// JavaScript Document
function Verificar(){
var regex=new RegExp("^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int|biz|info|name|pro)$");
if(document.form_reservation.op1.value==""){alert("Por favor Ingrese su Nombre");document.form_reservation.op1.focus();return false;}
if(regex.test(document.form_reservation.op2.value)==false){alert("Su correo Electronico no es Valido");document.form_reservation.op2.focus();return false;}
if(document.form_reservation.op3.value==""){alert("Describa su Inquietud en (Asunto)");document.form_reservation.op3.focus();return false;}
if(document.form_reservation.op4.value==""){alert("Por favor Ingrese sus Inquietudes");document.form_reservation.op4.focus();return false;}
return true;
}
function carEml(e){
  if(navigator.appVersion.indexOf("MSIE")==-1) return true;
  var keys=/[a-zA-Z0-9\@\.\-\_\x0d]/;
  return keys.test(String.fromCharCode(e.keyCode));
}