function verifica() {
if ((document.Form1.apellido_01.value == "") || (document.Form1.apellido_01.value== null)) {
alert("Por favor ingrese su apellido paterno"); 
document.Form1.apellido_01.focus();
return false;
}
else
if ((document.Form1.apellido_02.value == "") || (document.Form1.apellido_02.value== null)) {
alert("Por favor ingrese su apellido materno"); 
document.Form1.apellido_02.focus();
return false;
}
else
if ((document.Form1.nombres.value == "") || (document.Form1.nombres.value== null)) {
alert("Por favor ingrese sus nombres"); 
document.Form1.nombres.focus();
return false;
}
else 
if ((document.Form1.direccion.value == "") || (document.Form1.direccion.value== null)) {
alert("Por favor ingrese su direccion"); 
document.Form1.direccion.focus();
return false;
}
else 
if ((document.Form1.telefono.value == "") || (document.Form1.telefono.value== null)) {
alert("Por favor ingrese su número de teléfono"); 
document.Form1.telefono.focus();
return false;
}
else
if ((document.Form1.email.value == "") || (document.Form1.email.value== null)) {
alert("Por favor ingrese su e-mail"); 
document.Form1.email.focus();
return false;
}
else 
if ((document.Form1.comentario.value == "") || (document.Form1.comentario.value== null)) {
alert("Por favor ingrese su comentario"); 
document.Form1.comentario.focus();
return false;
}
else 
return true;
}