nel html, quando richiami la funzione:
codice:
      onmouseover="popUp('elMenu1',event, 100)"
nel menu.js:
[CODE]
function popUp(menuName,E, xPos){
if (!areCreated) return;

hideAll();

currentMenu = eval(menuName);
//xPos = (NS4) ? e.target.offsetLeft : event.x;
yPos = (NS4) ? e.layerY : event.y;
currentMenu.moveTo(xPos,yPos);

currentMenu.keepInWindow()
currentMenu.isOn = true;
currentMenu.showIt(true);
}