function abrir(theURL,w,h) {
   var sParametros = "top=25,left=25,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,height="+ (h) +",width="+ (w) + "";
   var oMostraJanela = window.open(theURL,"janelas",sParametros)
}

function vogalAcentuada(s)
{
ls = s.toLowerCase();
if ((ls.indexOf("á")>=0) || (ls.indexOf("à")>=0) || (ls.indexOf("ã")>=0) || (ls.indexOf("â")>=0) || (ls.indexOf("é")>=0) || (ls.indexOf("í")>=0) || (ls.indexOf("ó")>=0) || (ls.indexOf("õ")>=0) || (ls.indexOf("ô")>=0) || (ls.indexOf("ú")>=0) || (ls.indexOf("ü")>=0))
	return true;
}

function CheckMail(email)
{
var s = new String(email);

if((s.indexOf(" ")>=0))
	return true;

if ((s.indexOf("{")>=0) || (s.indexOf("}")>=0) || (s.indexOf("(")>=0) || (s.indexOf(")")>=0) || (s.indexOf("<")>=0) || (s.indexOf(">")>=0) || (s.indexOf("[")>=0) || (s.indexOf("]")>=0) || (s.indexOf("|")>=0) || (s.indexOf("\"")>=0) || (s.indexOf("/")>=0) )
	return true;

if (vogalAcentuada(email))
	return true;

if ((s.indexOf("&")>=0) || (s.indexOf("*")>=0) || (s.indexOf("$")>=0) || (s.indexOf("%")>=0) || (s.indexOf("?")>=0) || (s.indexOf("!")>=0) || (s.indexOf("^")>=0) || (s.indexOf("~")>=0) || (s.indexOf("`")>=0) || (s.indexOf("'")>=0) )
	return true;

if ((s.indexOf(",")>=0) || (s.indexOf(";")>=0) || (s.indexOf(":")>=0) || (s.indexOf("=")>=0) || (s.indexOf("#")>=0) )
	return true;

if ( (s.indexOf("@") < 0) || (s.indexOf("@") != s.lastIndexOf("@")) )
	return true;

if ( (s.indexOf("@.") > 0) || (s.indexOf(".@") > 0) )
	return true;
	
if (s.lastIndexOf(".") < s.indexOf("@"))
	return true;
}

function fale()
{
if (document.formhx.nome.value==0)
	{alert("Por favor, preencha o seu nome.");
	document.formhx.nome.focus();
	return false;}

if (document.formhx.cidade.value==0)
	{alert("Por favor, preencha a sua cidade.");
	document.formhx.cidade.focus();
	return false;}

if (document.formhx.fone.value==0)
	{alert("Por favor, preencha o seu telefone.");
	document.formhx.fone.focus();
	return false;}

if (document.formhx.mail.value==0)
	{alert("Por favor, preencha o seu e-mail.");
	document.formhx.mail.focus();
	return false;}

if (CheckMail(document.formhx.mail.value))
	{alert("Por favor, preencha o seu e-mail corretamente.");
	document.formhx.mail.select();
	document.formhx.mail.focus();
	return false;}
	
if (document.formhx.msg.value==0)
	{alert("E a mensagem ? Preencha a mensagem!");
	document.formhx.msg.focus();
	return false;}
}