// JavaScript Document
<!--
function validarFormulario()
{
	var hay_error = false;
	//oculto los mensajes de error
	span=document.getElementsByTagName('span');
	for (i=0;i<span.length;i++)
	{
		if(span[i].id.indexOf("error_campo_") != -1)
		{
			span[i].style.display="none";
		}
	}
	//compruebo cada campo obligatorio
	if(document.form1.campo_nombre.value.length==0)
	{
		document.getElementById("error_campo_nombre").style.display="block";
		hay_error = true;
	}
	if(document.form1.campo_apellidos.value.length==0)
	{
		document.getElementById("error_campo_apellidos").style.display="block";
		hay_error = true;
	}
	if(document.form1.campo_email.value.length==0)
	{
		document.getElementById("error_campo_email").style.display="block";
		hay_error = true;
	}
	if(document.form1.campo_asunto.value.length==0)
	{
		document.getElementById("error_campo_asunto").style.display="block";
		hay_error = true;
	}
	if(document.form1.campo_comentarios.value.length==0)
	{
		document.getElementById("error_campo_comentarios").style.display="block";
		hay_error = true;
	}
	//si no hay error envío el formulario
	if(!hay_error)
	{
		document.form1.action="enviar_email.php";
		document.form1.submit();	
	}
}
-->
