// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

function ApriFinestra(str) { 

//Qui sotto puoi impostare rispettivamente la larghezza e l'altezza del popup
larg=640; 
alt=520; 

// QUI SOTTO NON TOCCARE NULLA
toptop=(screen.height/2)-(alt/2); 
leftleft=(screen.width/2)-(larg/2); 


// Qui sotto puoi decidere l'aspetto del popup, ovvero se debba avere 
// la barra di scorrimento, la barra di stato, la barra dei menù
searchWin = window.open(str,'','top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+',scrollbars=no,status=no,location=no,toolbar=no'); 

} 
