function validar(form1){
	if(form1.email.value == ''){
		alert("O campo Email é obrigatório.");  
		return false;
		}
		return true;
		}
		function ValidaEmail()
{
  var obj = eval("document.forms[0].email");
  var txt = obj.value;
  if ((txt.length != 0) && ((txt.indexOf("@") < 1) || (txt.indexOf('.') < 7)))
  {
    alert('Email incorreto');
	obj.focus();
  }
}
