function createWindow(iUrl) {
	popwin=window.open('','_blank','toolbar=no,menubar=no,resizable=yes,scrollbars=yes,innerHeight=600,height=600,innerWidth=800,width=800');
	popwin.document.open();
	popwin.document.write('<html><head><title>Weergave</title></head><body bgcolor=white scroll=no topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0><div style="position: absolute; top:0px;left:0px"><a href="javascript:window.close()"><img src="'+iUrl+'" border="0"></a></div></body></html>');
	popwin.document.close();
}

function popup(URL) {
	width = 500;
	height = 500;
	scrwidth = self.screen.availWidth;
	scrheight = self.screen.availHeight;

	newWindow = window.open(URL, '_blank', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',top=' + ( (scrheight - height) / 2 ) + ',left=' + ( (scrwidth - width) / 2));
}

