function sweep(form){
	form.cerca.value="";
}

// non usata
function mostraMenu(menuCorrente) {
	if (document.getElementById) {
		questoMenu = document.getElementById(menuCorrente).style
		if (questoMenu.display == "block") {
			questoMenu.display = "none"
		}
		else {
			questoMenu.display = "block"
		}
	}
	return true
}
