nel html, quando richiami la funzione:
nel menu.js:codice:onmouseover="popUp('elMenu1',event, 100)"
[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);
}

Rispondi quotando