//===============================
// volver
//===============================
function volver() {
    history.go(-1);
}

function validateContactForm(myform) {
	 var validacion = "";
	 var error = 0;
	//nombre
	if (myform.name.value=="") {
		error++;
	}
 	//email
	if (!isValidEmail(myform.email.value)) {
		error++
	}
	if (error==0) {
		return true
	} else {
	validacion = "Please complete the required fields.";
		alert (validacion);
		return false
	}
}
function isValidEmail(email) {
	return (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email));
}
