function vergroting(map, bestand, width, height) {	
	
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2; 
 
	var vergroting = window.open('', 'Popup', 'height='+height+', width='+width+', left='+winl+', top='+wint+', toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	vergroting.document.open();
	vergroting.document.write("<html><head><title>Vergroting...</title><style type='text/css'>body { padding:0; margin:0; }</style></head><body onClick='window.close();' bottommargin='0' rightmargin='0' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='images/" + map + "/" + bestand + "' border='0' alt='Click to close..'></body></html>");
	vergroting.document.close();
	vergroting.focus();
}
