// JavaScript Document

if ($('frm_firma')) Event.observe('frm_firma', 'submit', validarCampania);

function validarCampania(e)
{
	var e = window.event ? window.event : e;
	
	if ($F('firmas_nombres').length==0)
	{
		alert("Escriba su nombre");
		Event.stop(e);
		return;
	}
	
	if ($F('firmas_apellidos').length==0)
	{
		alert("Escriba su apellido");
		Event.stop(e);
		return;
	}
	
	if ($F('firmas_dni').length==0)
	{
		alert("Escriba su D.N.I");
		Event.stop(e);
		return;
	}
	
	if ($F('firmas_dpto').length==0)
	{
		alert("Escriba el departamento / provincia donde vive");
		Event.stop(e);
		return;
	}
}
