function popup(image,x,y, bericht) {
	if(!bericht){
		var bericht = "";
	}
	var windowWidth = x+50; // width of the popup
	var windowHeight = y+100; // height of the popup
	var windowLeft = (screen.width / 2) - (windowWidth / 2); // center the window right to left
	var windowTop = (screen.height / 2) - (windowHeight / 2); // center the window top to bottom
	var options='directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width=' + windowWidth + ',height=' + windowHeight + ',top=' + windowTop + ',left=' + windowLeft + ',resizeable=no';
	var win=open('','popupWin',options);
	win.document.writeln('<html><head><link href="_css/4cis.css" rel="stylesheet" type="text/css">');
	win.document.writeln('<title>4CIS</title>');
	win.document.writeln('<link href="_css/4cis.css" rel="stylesheet" type="text/css">');
	win.document.writeln('</head>');
	win.document.writeln('<body style="margin: 0px;">');
	win.document.writeln('<table width="100%" height="100%" valign="middle">');
	win.document.writeln('<TR><TD width="50%"></TD><TD><TABLE width="100%"><TR><TD><IMG src="_layout/logo_popup.gif" alt="4CIS" align="left"></TD><TD align="right" valign="bottom"><B>' + bericht + '</B></TD></TR></TABLE>');
	win.document.writeln('<a href="javascript:top.close();" title="Klik hier om dit venster te sluiten.">');
	win.document.writeln('<img src="' + image + '" width="' + x + '" height="' + y + '" hspace="0" vspace="0">');
	win.document.writeln('</a>');
	win.document.writeln('</TD><TD width="50%"></TD></TR>');
	win.document.writeln('</table>');
	win.document.writeln('</body></html>');
	win.document.close();
	win.focus();
}
