function openwindow(url, w, h, t, l) { window.open(url, 'infoWindow' ,'resizable=no,width=' + w + ' ,innerwidth=' + w + ',height=' + h +',innerheight=' + h +',top=' + t +',left='+l+', toolbar=no,scrollbars=yes,status=no,menubar=no').focus(); } function openwindowResizable(url, w, h, t, l, resizeable) { if(resizeable) { resizeStr = 'yes'; } else { resizeStr = 'no'; } window.open(url, 'infoWindow' ,'resizable='+resizeStr+',width=' + w + ' ,innerwidth=' + w + ',height=' + h +',innerheight=' + h +',top=' + t +',left='+l+', toolbar=no,scrollbars=yes,status=no,menubar=no').focus(); } // Begin code voor QuickMenu function mouseMoved(e) { x = (document.all) ? document.body.scrollLeft+event.clientX : e.pageX; y = (document.all) ? document.body.scrollTop+event.clientY : e.pageY; } function doMenu(menuNaam) { var obj = document.getElementById(menuNaam); stopCounter(); if(obj.style.visibility == 'hidden' || obj.style.visibility == '') { obj.style.visibility = 'visible'; obj.style.top = y - obj.clientHeight-10; obj.style.left = x; } } function undoMenu(menuNaam) { if(undoCounter==-1) { undoCounter = window.setInterval("hideMenu('"+ menuNaam + "')", 1000); } } function hideMenu(menuNaam) { stopCounter(); document.getElementById(menuNaam).style.visibility = 'hidden'; } function stopCounter() { if(undoCounter!=-1) { window.clearInterval(undoCounter); undoCounter = -1; } } // Einde code voor QuickMenu