function PopupWindow (photoname, inwidth, inheight)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=" + (inwidth+15) + ",height=" + (inheight+45);
  popupwin = window.open("", "Photo", secondpart);
  popupwin.document.open("text/html","replace");
  popupwin.document.writeln ('<html><head><title>Snake River Rock -- Click Window to Close</title>');
  popupwin.document.writeln ('<meta http-equiv="imagetoolbar" content="no"></head>');
  popupwin.document.writeln ('<body bgcolor="white">');
  popupwin.document.writeln ('<a href="javascript:window.close()"><img src="pix/' + photoname + '" border="0">');
  popupwin.document.writeln ('<center>Click to Close</center></a></body></html>');
  popupwin.document.close();
  popupwin.focus();
}
