function popUp(folder, bestand, b, h) {
	  var loc=""+folder+"/"+bestand;
	  var wLeft  = (screen.availWidth-b)/2;
	  var wTop   = (screen.availHeight-h)/2;
	  var params = 'toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=yes, left='+wLeft+', top='+wTop+', width='+b+',height='+h; 
	  
	  foto = window.open("","foto",params);	  
	  foto.document.write("<html><head><title>.| Foto - "+bestand+"</title></head>");
	  foto.document.write("<body topmargin=0 leftmargin=0 marginweight=0 marginheight=0>");
	  foto.document.write("<a href='javascript:window.close();' title='[ Klik om te sluiten ]'><img src='"+loc+"' alt='' border='0'></a>");
	  foto.document.write("</body></html>");
	  foto.document.close();
}