function ValidaEmail(text){
  var obj = eval("text");
  var txt = obj.value;
  
  if ((txt.length != 0) && ((txt.indexOf("@") < 1) || (txt.indexOf('.') < 7)))
  {
	return true;	
  }

	return false; 
}