function openPEEK(daImg,windowWidth,windowHeight) {
   var winproperties = "scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no,left=" + ((screen.width/2)-(windowWidth/2+10)) + ",top=" + ((screen.height/2)-(windowHeight/2+20)) + ",width="+(windowWidth+2)+",height="+(windowHeight+2);
   var poster = window.open("about:blank","JAN",winproperties);
   poster.close();
   var poster = window.open("about:blank","JAN",winproperties);
   poster.document.write ('<html><head><title> ::: Jan Biermeyers Site ::: </title>');
   poster.document.write ('</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
   poster.document.write ('<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"><tr> <td align="center" valign="middle">');
   poster.document.write ('<img src=index.php?dbimage='+daImg+' onClick="self.close()" alt="photo" />');
   poster.document.write ('</td></tr></table>');
   poster.document.write ('</body></html>');
   poster.focus();
}
