function valida(){
	if (document.frm.nome.value == ""){
		alert('Aviso: Nome - Campo Vazio!');
		document.frm.nome.focus();
		return false;
	}
	if (document.frm.mensagem.value == ""){
		alert('Aviso: Mensagem - Campo vazio!');
		document.frm.mensagem.focus();
		return false;
	}
	if(document.frm.email.value.length < 4){
		alert("Aviso: E-mail - Campo inválido!");
		document.frm.email.focus();
		return false;
	}else{
		if (validEmail(document.frm.email.value)) {
			alert("Aviso: E-mail - Campo inválido!");
			document.frm.email.focus();
			return false;
		}
	}
}
function validEmail(email){
  var theStr = new String(email);
  var index = theStr.indexOf("@");
  if (index > 0){
    var pindex = theStr.indexOf(".",index);
    if ((pindex > index+1) && (theStr.length > pindex+1))
			return false;
  }
			return true;
}
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=400,left = 200,top = 165');");
}
