function Contact_Validator(theForm){

  	if (theForm.nombre.value == ""){
		alert("Please enter a value for the \"Nombre\" field.");
    		theForm.nombre.focus();
		return (false);
  	}

  	if (theForm.telefono.value == ""){
    		alert("Please enter a value for the \"Telefono\" field.");
    		theForm.telefono.focus();
    		return (false);
  	}

	

	if (theForm.correo.value == ""){
		alert("Please enter a value for the \"Correo\" field.");
    		theForm.correo.focus();
    		return (false);
	}




}
