/* JavaScript Form Validation by: ..: Okidokz :..  */

<!--
function check_all(form) {
if (form.nombre.value == "") {
alert("Error Message:\nPlease enter your First Name");
form.nombre.focus();
return false; 
}

if (form.email.value == "") {
alert("Error Message:\nPlease enter your Email Address");
form.email.focus();
return false; 
}

if (!form.email.value.match(/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/)) {
alert("Error Message:\nPlease enter your Email Address in a correct format\n(e.g. you@youremail.com)");
form.email.focus();
return false; 
}

if (form.pais.value == "") {
alert("Error Message:\nPlease enter your Country Name");
form.pais.focus();
return false; 
}

if (form.comentario.value == "") {
alert("Error Message:\nPlease type your COMMENTS");
form.comentario.focus();
return false; 
}
}

-->
