function openImg(theURL,theWidth,theHeight) {
  newwin=window.open('','','menubar=no,toolbar=no,status=no,width='+(theWidth+12)+',height='+(theHeight+45)+',resizable=no,left=0,top=0');
  newwin.document.writeln('<html><head><title>Photo Gallery</title>');
  newwin.document.writeln('</head><body topmargin="5" leftmargin="5" marginwidth="0" marginheight="0">');
  newwin.document.writeln('<p align="center">');
  newwin.document.writeln('<img src="'+theURL+'" widht="'+theWidth+'" height="'+theHeight+'" /><br />');
  newwin.document.writeln('<a href="javascript:self.close()"><img src="images/close.gif" border="0" widht="100" height="30" alt="close" /></a>');
  newwin.document.writeln('</body></html>');
  newwin.document.close();
}

function openImgDesc(theURL,theWidth,theHeight,theDescription) {
  newwin=window.open('','','menubar=no,toolbar=no,status=no,width='+(theWidth+12)+',height='+(theHeight+90)+',resizable=no,left=0,top=0');
  newwin.document.writeln('<html><head><title>Photo Gallery</title>');
  newwin.document.writeln('<style type="text/css">');
  newwin.document.writeln('  p {font-family : Verdana, Arial; font-size: 10pt}');
  newwin.document.writeln('</style>');
  newwin.document.writeln('</head><body topmargin="5" leftmargin="5" marginwidth="0" marginheight="0">');
  newwin.document.writeln('<p align="center">');
  newwin.document.writeln('<img src="'+theURL+'" widht="'+theWidth+'" height="'+theHeight+'" /><br /><br />');
  newwin.document.writeln('<i>'+theDescription+'</i><br /><br />');
  newwin.document.writeln('<a href="javascript:self.close()"><img src="images/close.gif" border="0" widht="100" height="30" alt="close" /></a>');
  newwin.document.writeln('</body></html>');
  newwin.document.close();
}
