
function CompruebaAppli()
{
	mensajeErr = '';
	mensajeErr += CompruebaNombre();
	mensajeErr += CompruebaActividad();
	mensajeErr += CompruebaPais();
	mensajeErr += CompruebaTelefono();
	mensajeErr += CompruebaEmail();
	
	
	
	
	if( mensajeErr != '' )
	{
		alert('ERROR.\nEs obligatorio rellenar todos los campos:\nNo se enviarán catálogos al recibir formularios con campos vacíos o incompletos \n\n'+mensajeErr);
		return false;
	}  else  {
		return true;
	}
}
function CompruebaNombre()
{
	var stri = document.appli.nombre.value;
  	if( stri.length==0) {
    return '+ Controlar el campo NOMBRE  \n';	
  	} else {
    return '';
    }
}
function CompruebaActividad()
{
	var stri = document.appli.actividad.value;
  	if( stri.length==0) {
    return '+ Controlar el campo ACTIVIDAD  \n';	
  	} else {
    return '';
    }
}
function CompruebaPais()
{
	var stri = document.appli.pais.value;
  	if( stri.length==0) {
    return '+ Controlar el campo PAIS  \n';	
  	} else {
    return '';
    }
}
function CompruebaTelefono()
{
	var stri = document.appli.telefono.value;
  	if( stri.length==0) {
    return '+ Controlar el campo TELEFONO  \n';	
  	} else {
    return '';
    }
}
function CompruebaEmail()
{
	var stri = document.appli.email.value;
  	if( stri.length==0) {
    return '+ Controlar el campo EMail  \n';	
  	} else {
    return '';
    }
}
