function loadbody()  {
  var margine;

  margine= (screen.width - 798)/2;
  centratore.style.visibility = "visible";
  centratore.style.left = margine;
  
}





var Paperino="display:''"
img1=new Image()
img1.src="fold.gif"
img2=new Image()
img2.src="open.gif"

function Scambiatore(){
if(!document.all)
return
if (event.srcElement.id=="Topolino") {
var cercaindice = event.srcElement.sourceIndex
var prossimo = document.all[cercaindice+1]
if (prossimo.style.display=="none") {
prossimo.style.display=''
event.srcElement.style.listStyleImage="url(open.gif)"
}
else {
prossimo.style.display="none"
event.srcElement.style.listStyleImage="url(fold.gif)"
}
}
}

document.onclick=Scambiatore

//-->



