var myWind = "" ;
var WindowClosed = true;
var hh = window.screen.height;
var ww = window.screen.width;
var message="";


function NewWindowOpen()
{
window.opener.WindowClosed = false;
}
function NewWindowClose()
{
window.opener.WindowClosed = true;
}





function newactionwindow(w,h,pad)
{
var WhatPage=pad;
var myLeft=ww-(ww-25); // alle pop-up schermen beginnen links boven



  if (myWind == "" || WindowClosed==true  || myWind.name == undefined)
  {
    myWind = window.open(WhatPage,'win','height='+h+',width='+w+',toolbar=no,scrollbars=yes,location=no,resizable=no,menubar=no,status=no,left='+myLeft+', top=25');
  } else
  {
    myWind.close();
    myWind = window.open(WhatPage,'win','height='+h+',width='+w+',toolbar=no,scrollbars=yes,location=no,resizable=no,menubar=no,status=no,left='+myLeft+', top=25');
  }
}




///////////////////////////////////
function clickIE()
{
if (document.all) {(message);return false;}
}
function clickNS(e)
{
 if(document.layers||(document.getElementById&&!document.all))
  {
   if (e.which==2||e.which==3) {(message);return false;}
  }
}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function('return false')




