function checkForm2(form){
		if (form.parole.value == "") {
				alert("campo vuoto");
				form.parole.focus();
				return false
		}
		if (form.selectName.options.selectedIndex=='2') {
			 form.action='http://www.wayin.net/root/searchnetwork.asp';
			 form.HOST.value = ''
			 }
		if (form.selectName.options.selectedIndex=='3') {
			 campo=form.parole.value.toString();
		   form.action='http://www.waygreenpages.net/NavigaRicercaSemplice.asp?searchsimple='+campo+'&ling=1';
		 }
		 return true
 }
 
function showRicerca() {
	//document.getElementById("ricerca").filters[0].Apply();
	//document.getElementById("ricerca").filters[0].transition= "6";
	document.getElementById("ricerca").style.visibility = "visible";
	document.getElementById("ricercaclick").style.visibility = "hidden";
	//document.getElementById("ricerca").filters[0].Play();
}
function closeRicerca() {
	//document.getElementById("ricerca").filters[0].Apply();
	//document.getElementById("ricerca").filters[0].transition= "7";
	document.getElementById("ricerca").style.visibility = "hidden";
	//document.getElementById("ricerca").filters[0].Play();
	document.getElementById("ricercaclick").style.visibility = "visible";
}
 
