function enviaId1(tipo){
	if (document.form.lista1.selectedIndex != 0)		
	{
		location.href = "./ficha.php?id="+ document.form.lista1.options[document.form.lista1.selectedIndex].value+"&tipo="+tipo;
		document.form.lista1.selectedIndex= 0;
	}
}

function enviaId2(tipo){
	if (document.form.lista2.selectedIndex != 0)		
	{
		location.href = "./ficha.php?id="+ document.form.lista2.options[document.form.lista2.selectedIndex].value+"&tipo="+tipo;
		document.form.lista2.selectedIndex= 0;
	}
}

function enviaId3(tipo){
	if (document.form.lista3.selectedIndex != 0)		
	{
		location.href = "./ficha.php?id="+ document.form.lista3.options[document.form.lista3.selectedIndex].value+"&tipo="+tipo;
		document.form.lista3.selectedIndex= 0;
	}
}




