function dentro(nome){
	var oggetto = document.getElementById(nome);
	oggetto.src = "./jpg/" + nome + "2.jpg";
}

function fuori(nome){
	var oggetto = document.getElementById(nome);
	oggetto.src = "./jpg/" + nome + ".jpg";
}

var esterna = null;
function visualizza(pagina, nome, numero)
{
URL= "esterna.php?pagina=" + pagina + "&valore=" + nome + "&numero=" + numero;
P = 'width=' + screen.width + ',height=' + screen.height + ' , ';
P+= 'left=' + 0 + ', top=' + 0 + ', ';
P+= 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no';
esterna = window.open(URL,'Finestra',P);
esterna.window.focus();
}


function startmenu()
{
	document.getElementById('menu1').style.display = "none";PAGI
	document.getElementById('menu2').style.display = "none";
}

function menufunc(menuId)
{
	if(document.getElementById(menuId).style.display == "none")
	{
		startmenu();
		document.getElementById(menuId).style.display = "block";
	}
	else
	{
		startmenu();
	}
}
