function verifica() {
if ((document.form1.nombre.value == "") || (document.form1.nombre.value== null)) {
alert("Debe ingresar su Nombre"); 
document.form1.nombre.focus();
return false;
}
else 
if ((document.form1.email.value == "") || (document.form1.email.value== null)) {
alert("Debe ingresar su Correo"); 
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"); 
	document.form1.email.focus();
    return (false); 
  }
else 
if ((document.form1.nombreamigo.value == "") || (document.form1.nombreamigo.value== null)) {
alert("Debe ingresar el Nombre de su Amigo"); 
document.form1.nombreamigo.focus();
return false;
}
else 
if ((document.form1.emailamigo.value == "") || (document.form1.emailamigo.value== null)) {
alert("Debe ingresar el Correo de su Amigo"); 
document.form1.emailamigo.focus();
return false;
}
 if ((document.form1.emailamigo.value.indexOf ('@', 0) == -1)||(document.form1.emailamigo.value.length < 5)) { 
    alert("Escriba una cuenta de correo válida"); 
	document.form1.emailamigo.focus();
    return (false); 
  }
else 
if ((document.form1.consulta.value == "") || (document.form1.consulta.value== null)) {
alert("Debe ingresar alguna Consulta"); 
document.form1.consulta.focus();
return false;
}
else 
return true;
}
//