

<!-- Hide script

   function validateForm() {
	var  nombre = document.form1.nombre.value;
	var  correo = document.form1.correo.value;
	var    tema = document.form1.tema.value;
	var     msg = document.form1.msg.value;
	
	if (nombre == '') {
	    alert("Warning: Please type your Name ");
	    document.form1.nombre.focus();
	    document.form1.nombre.select();
	    return false;
	}

	if  (nombre.search("'") > -1) {
	    alert("Warning: Please do not type special characters in your Name");
	    document.form1.nombre.focus();
	    document.form1.nombre.select();
	    return false;
	}

	if  (correo.search(" ") > -1) {
	    alert("Warning: Please do not type withe spaces in your E-mail address");
	    document.form1.correo.focus();
	    document.form1.correo.select();
	    return false;
	}

	if  (correo.search("@") < 0) {
	    alert("Warning: Your E-mail address must have an anchor '@'");
	    document.form1.correo.focus();
	    document.form1.correo.select();
	    return false;
	}

	if  (correo.search("'") > -1) {
	    alert("Warning: Please do not type special characters in your E-amil address");
	    document.form1.correo.focus();
	    document.form1.correo.select();
	    return false;
	}

	if (tema == '') {
	    alert("Warning: Please type the Subject");
	    document.form1.tema.focus();
	    document.form1.tema.select();
	    return false;
	}

	if  (tema.search("'") > -1) {
	    alert("Warning: Please do not type special characters in the Subject");
	    document.form1.tema.focus();
	    document.form1.tema.select();
	    return false;
	}

	if (msg == ' ') {
	    alert("Warning: Please type your Message");
	    document.form1.msg.focus();
	    document.form1.msg.select();
	    return false;
	}

	if  (msg.search("'") > -1) {
	    alert("Warning: lease do not type special characters in the Message");
	    document.form1.msg.focus();
	    document.form1.msg.select();
	    return false;
	}
	return true;
   }

// End script hiding --> 
