<!--

function validar_contacto_activo()
{ 
	if (document.f1.contacto.value == "")
		{
		alert("Debe rellenar el campo: Nombre");
		document.f1.contacto.focus();
		}
	else
		vtel();
};//End function

function vtel()
{
	if (document.f1.telf.value=="")
		{
		alert("Debe rellenar el campo: Telefono fijo")
		document.f1.telf.focus();
		}
	else
		vemail();
};//End function

function vemail()
{
	if(document.f1.email.value=="")
		{
		alert("Debe rellenar el campo: Email")
		document.f1.email.focus();
		}
	else
		vconsulta();
};//End function

function vconsulta()
{
	if(document.f1.consulta.value=="")
		{
		alert("Debe rellenar el campo: Consulta")
		document.f1.consulta.focus();
		}
	else
		document.f1.submit();
};//End function


//-->


