<!-- 

	function openFixedWindow(pUrl, pWindowName, pBreedte, pHoogte){
		contentwindow = open(pUrl,pWindowName,"width="+(pBreedte+17)+",height="+pHoogte+",status=no,toolbar=no,scrollbars=yes,menubar=yes,location=no,personalbar=no, statusbar=no");
	}

	function openNormalWindow(pUrl, pWindowName, pBreedte, pHoogte){
		contentwindow = open(pUrl,pWindowName,"width="+pBreedte+",height="+pHoogte+",status=yes,toolbar=yes,scrollbars=yes,menubar=yes,location=yes,personalbar=yes, statusbar=yes,resizable");
	}

-->