function popup(folder, bestand, width, height) {	
	var vergroting = window.open('', 'Popup', 'height='+height+', width='+width+', left=100, top=100, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	vergroting.document.open();
	vergroting.document.write("<html>");
	vergroting.document.write("	<head>");
	vergroting.document.write("		<title>Vergroting...</title>");
	vergroting.document.write("		<style type='text/css'>body { padding:0; margin:0; }</style>");
	vergroting.document.write("</head>");
	vergroting.document.write("<body onClick='window.close();' bottommargin='0' rightmargin='0' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	vergroting.document.write("<img src='images/" + folder + "/" + bestand + "' border='0' title='Klik om te sluiten'>");
	vergroting.document.write("</body>");
	vergroting.document.write("</html>");
	vergroting.document.close();
	vergroting.focus();
}