<!--
function openPic (pic, w, h, caption) {
  newWin=window.open("", "", "scrollbars=no,width=" +w+ ",height=" +h );
  newWin.document.write("<title>Desert Eagle: Gallery</title>");
  newWin.document.write("<style>a {text-decoration: none; font-weight: bold}</style>");
  newWin.document.write("<body bgcolor=#6666CC>");
  newWin.document.write("<p><img src="+pic+"><br>");
  newWin.document.write("<font size=4 face=Arial color=#000000>"+caption+"</font></p>");
  newWin.document.write("<p align=center><a href=javascript:window.close()>")
  newWin.document.write("<font size=2 face=Arial color=#000000>click to close window</font></a></p>") 
  newWin.focus();
}
-->