﻿function validacionDatos() {
	if (document.getElementById("attribute1").value.length==0){
		document.getElementById("attribute1").focus();
		alert("Por favor digite su nombre y apellido");
		return false
	}
	if (document.getElementById("email").value.length==0){
		document.getElementById("email").focus();
		alert("Por favor digite el Correo Electr\xf3nico");
		return false
	}
	if (isEmailAddress(document.getElementById("email")) == 0){
		document.getElementById("email").focus();
		document.getElementById("email").value="";
		alert("Por favor digite un Correo Electr\xf3nico valido");
		return false
	}
	if (document.getElementById("emailconfirm").value.length==0){
		document.getElementById("emailconfirm").focus();
		alert("Por favor confirme su Correo Electr\xf3nico");
		return false
	}
	if (isEmailAddress(document.getElementById("emailconfirm")) == 0){
		document.getElementById("emailconfirm").focus();
		document.getElementById("emailconfirm").value="";
		alert("Por favor digite un Correo Electr\xf3nico valido");
		return false
	}
	if(document.getElementById("email").value != document.getElementById("emailconfirm").value){
		alert("Los correos digitados no coinciden");
		return false
	}
}
function isEmailAddress(theElement){
	var s = theElement.value;
	var filter=/^[A-Za-z0-9][A-Za-z0-9_.]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;
	if (filter.test(s)){
		return 1;
	} else {
		return 0;
	}			
}			 