<!--
d=document;
l=d.layers;
op=navigator.userAgent.indexOf('Opera')!=-1;
px='px';

// grootte aanpassen van browser window
// groote van de div met content wordt de hoogte van de zichtbare browser inhoud minus de hoogte van de menus bovenaan (vast)

// bepaal de hoogte van het clientscherm
daHeight = (!document.all)?window.innerHeight:document.body.clientHeight;
document.getElementById('plaatje').height=(daHeight  - 192);
var oudehoogte=daHeight;

// reload de page na een resize actie van de gebruiker
function reloadPage(){
 currentHeight = (!document.all)?window.innerHeight:document.body.clientHeight;
 if (oudehoogte != currentHeight){
	//  history.go(0)
	daHeight = (!document.all)?window.innerHeight:document.body.clientHeight;
	document.getElementById('plaatje').height=(daHeight  - 192);
	var oudehoogte=daHeight;
 }
}




function ClosePopUpWin(){if(bPopupWinOpen)if(!PopUpWin.closed)PopUpWin.close()}
function OpenPopUpWin(sUrl,w,h,yesNo){winl=(screen.width-w)/2;wint=(screen.height-h)/2;winprops ='height='+h+',width='+w+',left='+winl+',top='+wint+',scrollbars=1,resizable=';winprops+=(l)?1:yesNo;winprops+=',toolbar=0,location=0,directories=0,status=0,menubar=0,fullscreen=0';if(bPopupWinOpen)if(PopUpWin.closed)PopUpWin=window.open(sUrl,'PopUpWin',winprops);else{PopUpWin.location.href=sUrl;PopUpWin.focus()}else{PopUpWin=window.open(sUrl,'PopUpWin',winprops);bPopupWinOpen=true}}
bPopupWinOpen = false;


//window.onload = init;

// auto-resize voor IE
window.onresize = reloadPage;

// auto-resize voor firefox
setInterval("reloadPage()",200)

window.onunload = ClosePopUpWin;

//-->