<!--
function volscherm(pag)
{
windowname="newwindow";
if (! window.focus)return true;
var href;
if (typeof(pag) == 'string')
   href=pag;
else
   href=pag.href;
 window.open(href+".htm", windowname, ',type=fullWindow,fullscreen,scrollbars=no,menubar=no');
}
//-->