// Anexo requerido al excelente buscador de marti congost
// Desde aquí, mis felicitaciones... brutal!
function enviar_formulario()
{
	nom=document.getElementById("nom").selectedIndex;
	eda=document.getElementById("eda").selectedIndex;
	hab=document.getElementById("hab").options[document.getElementById("hab").selectedIndex].value;
	pla=document.getElementById("pla").selectedIndex;
	if(nom==0 && eda==0 && (hab=="-1" || hab==0) && pla==0)
	{
		alert('Introduza um ou mais critérios de procura.');
	}
	else
	{
		document.location.href="procure_t.asp?nom="+nom+"&eda="+eda+"&hab="+hab+"&pla="+pla;
	}
}