function CheckEmail( e_mail ) {
	ArrobaPos    = e_mail.indexOf("@");
	PuntoPos     = e_mail.lastIndexOf(".");
	OtroPuntoPos = e_mail.indexOf(".");
	Longitud     = e_mail.length;
	
	if ( ArrobaPos < 1
		|| PuntoPos < 3
		|| ( ArrobaPos + 1 ) > PuntoPos
		|| PuntoPos == Longitud - 1
		|| OtroPuntoPos < 1 )
		alert( "La sintaxis del mail no es correcta. Verifique." );
	
	return true;
}

