function mostraMenu(menuCorrente) {
			if (document.getElementById) {
				questoMenu = document.getElementById(menuCorrente).style
				if (questoMenu.display == "block") {
					questoMenu.display = "none"
				}
				else {
					questoMenu.display = "block"
				}
				return false
			}
			else {
				return true
			}
}

function conferma(cosa) {
		return confirm("Sicuro di cancellare "+cosa+" ?");
}


function anteprima_img() {
	if (document.frmmain.imagefile.value == "") {  
		immagi="no"; 
	} else {
		immagi="si"; 
	}
	nome=document.frmmain.nome.value;
	testo=document.frmmain.testo.value;
    window.open("../casa/anteprima.php?nome="+nome+"&immagine="+immagi+"&testo="+testo, "","width=700,height=700,scrollbars=yes,status=yes,resizable=yes,top=150,left=100");
}
function anteprima() {
	nome=document.frmmain.nome.value;
	testo=document.frmmain.testo.value;
    window.open("../casa/anteprima.php?nome="+nome+"&testo="+testo, "","width=700,height=700,scrollbars=yes,status=yes,resizable=yes,top=150,left=100");
}
function direzione(cosa) {
	document.getElementById("scorri").direction=cosa;
	
}