 function comprobar()
 {
 	sw=0
	sel=0

 // validacion nombre
	nombre = document.f1.nombre.value;
	if (nombre.length <= 0)
	{
		document.getElementById("errornombre").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.f1.nombre.focus();
			document.f1.nombre.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("errornombre").style.visibility="hidden";
		sw=0
	}
	
 
   	
	// validacion persona

	persona = document.inscripcion_feria.persona.value;
	if (persona.length <= 0 || persona.indexOf(" ") <= 0)
	{
		document.getElementById("errorpersona").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.persona.focus();
			document.inscripcion_feria.persona.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("errorpersona").style.visibility="hidden";
		sw=0
	}

// validacion cif
	cif = document.inscripcion_feria.cif.value;
	if (cif.length <= 0)
	{
		document.getElementById("errorcif").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.cif.focus();
			document.inscripcion_feria.cif.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("errorcif").style.visibility="hidden";
		sw=0
	}
	


// validacion email
	email = document.inscripcion_feria.email.value;
	if (email.length <= 0)
	{
		document.getElementById("erroremail").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.email.focus();
			document.inscripcion_feria.email.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("erroremail").style.visibility="hidden";
		sw=0
	}

// validacion telefono
	telefono = document.inscripcion_feria.telefono.value;
	if (telefono.length <= 0)
	{
		document.getElementById("errortelefono").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.telefono.focus();
			document.inscripcion_feria.telefono.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("errortelefono").style.visibility="hidden";
		sw=0
	}
	
 


// validacion actividad
	actividad = document.inscripcion_feria.actividad.value;
	if (actividad.length <= 0)
	{
		document.getElementById("erroractividad").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.actividad.focus();
			document.inscripcion_feria.actividad.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("erroractividad").style.visibility="hidden";
		sw=0
	}


// validacion descripcion
	descripcion = document.inscripcion_feria.descripcion.value;
	if (descripcion.length <= 0)
	{
		document.getElementById("errordescripcion").style.visibility="visible"; 
		sw=1
		if (sel==0)
		{
			document.inscripcion_feria.descripcion.focus();
			document.inscripcion_feria.descripcion.select();
			sel=1
		}
	}
	else
	{
		document.getElementById("errordescripcion").style.visibility="hidden";
		sw=0
	}


		
	// RESUELVE
	
	if (sw==1)
	{	
		return false;
	}
	else
	{ 
		return true;
	}
 }
