//script voor popups van de plaatjes
		<!--
		versie  = parseInt(navigator.appVersion);
		
		var fotoBox=null;
		
		function displayFoto(titel,fotosrc,wheight,wwidth) {
			if (!(fotoBox==null||fotoBox.closed)) {
				fotoBox.close();
				fotoBox=null;
				}
			wtop=(screen.height-wheight)/2;
			wleft=(screen.width-wwidth)/2;
			formaat="height="+wheight+",width="+wwidth+",top="+wtop+",left="+wleft;
			fotoBox=window.open('','',formaat);
			fotoBox.document.open("text/html");
			fotoBox.document.write("<HTML><HEAD><TITLE>"+titel+"</TITLE><SCRIPT LANGUAGE='JavaScript'>vader=opener;</SCRIPT></HEAD><BODY onUnload('javascript:vader.fotoBox=null') TOPMARGIN=0 LEFTMARGIN=0><CENTER><A HREF='javascript:close()'><IMG SRC="+fotosrc+" BORDER=0 ALT='Klik op het plaatje om af te sluiten'></A></BODY></HTML>");
			fotoBox.document.close();
			}
