function popup(folder,bestand,b,h) {
var loc=""+folder+"/"+bestand;
var parameters="toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=no,top=0,left=0,width="+b+",height="+h;
foto = window.open("","pic",parameters);
foto.moveTo((screen.availWidth-b)/2, (screen.availHeight-h)/2);
foto.document.write("<html><head><title>:: Creatal foto ::</title></head>");
foto.document.write("<style>body { margin: 0px;overflow: hidden; }</style>");
foto.document.write("<body><a href='javascript:window.close();' title='[Klik om te sluiten]'><img src='"+loc+"' border='0' height="+h+"></a></body></html>");
foto.document.close();
}