function verifica() {
if ((document.form1.nombres.value == "") || (document.form1.nombres.value== null)) {
alert("Debe ingresar su Nombre"); 
document.form1.nombres.focus();
return false;
}
else 
if ((document.form1.apellidos.value == "") || (document.form1.apellidos.value== null)) {
alert("Debe ingresar su Apellido"); 
document.form1.apellidoS.focus();
return false;
}
else 
if ((document.form1.direccion.value == "") || (document.form1.direccion.value== null)) {
alert("Debe ingresar su Dirección"); 
document.form1.direccion.focus();
return false;
}
else 
if ((document.form1.ciudad.value == "") || (document.form1.ciudad.value== null)) {
alert("Debe ingresar su Ciudad"); 
document.form1.ciudad.focus();
return false;
}
else
if ((document.form1.pais.value == "") || (document.form1.pais.value== null)) {
alert("Debe ingresar su País"); 
document.form1.pais.focus();
return false;
}
else
if ((document.form1.telefono.value == "") || (document.form1.telefono.value== null)) {
alert("Debe ingresar su Teléfono"); 
document.form1.telefono.focus();
return false;
}
else
if ((document.form1.email.value == "") || (document.form1.email.value== null)) {
alert("Debe ingresar su Correo Electronico"); 
document.form1.email.focus();
return false;
}
 if ((document.form1.email.value.indexOf ('@', 0) == -1)||(document.form1.email.value.length < 5)) { 
    alert("Escriba una cuenta de correo válida"); 
    return (false); 
  }
else 
if ((document.form1.dominio.value == "") || (document.form1.dominio.value== null)) {
alert("Debe ingresar el Dominio a Registrar y/o Hostear"); 
document.form1.dominio.focus();
return false;
}
else 
if ((document.form1.D1.value == "0") || (document.form1.D1.value== null)) {
alert("Debe debe elegir el plan de hosting"); 
document.form1.D1.focus();
return false;
}
else 
return true;
}
//