// <!-- waodpop.js

var isie=0;
if(window.navigator.appName=="Microsoft Internet Explorer"&&window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE")+5,window.navigator.appVersion.indexOf("MSIE")+8)>=5.5)
  {
  isie=1;
  }
else
  {
isie=0;
  }
if(isie)
  {
  var html="";
  html+='<table style="border:1pt solid #808080" bgcolor="#E6E9EE" width="110" height="90" cellpadding="0" cellspacing="1">';
  html+='<st'+'yle type="text/css">\n';
  html+='a:link {text-decoration:none;font-family:Verdana;font-size:9px;}\n';
  html+='a:visited {text-decoration:none;font-family:Verdana;font-size:9px;}\n';
  html+='td {font-family:Verdana;font-size:9px;cursor:hand;}\n';
  html+='<\/style>\n';
  html+='<sc'+'ript type="txt/javascript">\n';
  html+='\n<'+'!--\n';
  html+='window.onerror=null;\n';
  html+='/'+' -'+'->\n';
  html+='<\/script>\n';

  html+='<tr><td style="border:1px solid #E6E9EE; " id="i0" onmouseover="document.all.i0.style.background=\'#CFD6E8\';document.all.i0.style.border=\'1px solid #737B92\';" onmouseout="document.all.i0.style.background=\'#E6E9EE\';document.all.i0.style.border=\'1px solid #E6E9EE\';" onclick="window.parent.history.go(-1);"> <img src="gifs/menuback.gif" width="12" height="12" border="0" hspace="0" vspace="0" align="absmiddle"> Terug</td></tr>';
  html+='<tr><td style="border:1px solid #E6E9EE; " id="i1" onmouseover="document.all.i1.style.background=\'#CFD6E8\';document.all.i1.style.border=\'1px solid #737B92\';" onmouseout="document.all.i1.style.background=\'#E6E9EE\';document.all.i1.style.border=\'1px solid #E6E9EE\';" onclick="window.parent.history.go(1);"> <img src="gifs/menuforward.gif" width="12" height="12" border="0" hspace="0" vspace="0" align="absmiddle"> Vooruit</td></tr>';
  html+='<tr><td style="border:1px solid #E6E9EE; " id="i6" onmouseover="document.all.i6.style.background=\'#CFD6E8\';document.all.i6.style.border=\'1px solid #737B92\';" onmouseout="document.all.i6.style.background=\'#E6E9EE\';document.all.i6.style.border=\'1px solid #E6E9EE\';" onclick="window.print();"> <img src="gifs/menuprint.gif" width="12" height="12" border="0" hspace="0" vspace="0" align="absmiddle"> Pagina printen</td></tr>';
  html+='<tr><td style="border:1px solid #E6E9EE; " id="i7" onmouseover="document.all.i7.style.background=\'#CFD6E8\';document.all.i7.style.border=\'1px solid #737B92\';" onmouseout="document.all.i7.style.background=\'#E6E9EE\';document.all.i7.style.border=\'1px solid #E6E9EE\';" onclick="window.parent.location.href=window.parent.location.href;"> <img src="gifs/menurefresh.gif" width="12" height="12" border="0" hspace="0" vspace="0" align="absmiddle"> Vernieuwen</td></tr>';

  html+='</table>';
  var oPopup = window.createPopup();
  }

function dopopup(x,y)
  {
  if(isie)
    {
    var oPopupBody = oPopup.document.body;
    oPopupBody.innerHTML = html;
    oPopup.show(x, y, 110, 90, document.body);
   }
  }

function click(e)
  {
  if(isie)
     {
     if(document.all)
       {
       if(event.button==2||event.button==3)
         {
         dopopup(event.x-1,event.y-1);
         }
       }
    }
  }

if(isie)
  {
  document.oncontextmenu = function()
    {
    dopopup(event.x,event.y);return false;
    }
  document.onmousedown = click;
  }