function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function popupWindow(aHtml,breedte,hoogte)
{ //v1.01	
var aPopupWin=window.open('','PopupWin','resizable=no,scrollbars=no,status=0,menubar=no,width=' + breedte + ',height=' + hoogte + ',left=155,top=100"');
	//ivm tonen gelinkte stylesheets in NS browser eerst openen en sluiten en daarna verwijzen naar doc.
	aPopupWin.document.open();
	aPopupWin.document.close();
	aPopupWin.document.location.href=aHtml;

	if (aPopupWin&&!aPopupWin.closed)
		aPopupWin.focus();
}
function popupWindowscroll(aHtml,breedte,hoogte)
{ //v1.01	
var aPopupWin=window.open('','PopupWin','resizable=no,scrollbars=yes,status=0,menubar=no,width=' + breedte + ',height=' + hoogte + ',left=155,top=100"');
	//ivm tonen gelinkte stylesheets in NS browser eerst openen en sluiten en daarna verwijzen naar doc.
	aPopupWin.document.open();
	aPopupWin.document.close();
	aPopupWin.document.location.href=aHtml;

	if (aPopupWin&&!aPopupWin.closed)
		aPopupWin.focus();
}
