// JavaScript Document
function ValidarEmail()
{
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();
}
}