function validaContato(frm){
	if(frm.txtNome.value.replace(/\s/gi,"")==""){
			frm.txtNome.focus();
	alert("Informe o seu nome.");
	return false;
}
if(frm._emailde.value.indexOf("@")==-1){
	frm._emailde.focus();
	alert("Informe o email corretamente.");
	return false;
}
	if(frm.txtFoneContato.value.replace(/\s/gi,"")==""){
			frm.txtFoneContato.focus();
	alert("Informe um telefone para contato.");
	return false;
}
if(frm.txtMensagem.value.replace(/\s/gi,"")==""){
	frm.txtMensagem.focus();
	alert("Digite sua mensagem.");
		return false;
}
		return true;
}
