function chequearEmail(sForm){
	if (sForm.email.value == ""){
		alert("DEBE INGRESAR SU EMAIL");
		sForm.email.focus();
		return false;
	};

	if (!isEmailAddress(sForm.email)) {
		alert("DEBE INGRESAR UNA DIRECCIÓN DE CORREO VÁLIDA");
		sForm.email.focus();
		return false;	
	}
}
