function Comprobar(){   
  if (CompDatosPersonales())
  { 
   document.frmconv.inscomentario.value=1;   
   document.frmconv.submit();      
  }
}

function CompDatosPersonales (){    
  
  if (document.frmconv.mail.value==""){
    alert("Debe introducir un correo");
	return false;
  }else{
    if (bComprobarCorreo()=="N"){
      alert("El formato del correo no es correcto");
	  return false;
    }
  }         
  if (document.frmconv.nombre.value==""){
    alert("Debe introducir el Nombre");
	return false;
  }
  if (document.frmconv.comentario.value==""){
   alert("Debe introducir un comentario");
   return false;
  }
    
      
     return true;
}




