function form1_Validator(theForm) { if (theForm.correo.value == "") { alert("Debes dejar tu correo para registrarte"); return false; } if (theForm.pwdfld.value == "") { alert("Debes llenar el campo Password para completar tu registro"); return false; } return true; }