function popPhoto(img, alt, caption) {
        var myImg = new Image();
        myImg.src = img;
        var width = myImg.width + 30;
        var height = myImg.height + 90;
        var pWin = window.open("", "", "height="+height+", width="+width+", scrollbars=yes");
        pWin.document.write("<html>");
        pWin.document.write("<head><title>"+alt+"</title></head>");
        pWin.document.write("<body>");
        pWin.document.write("<p style='text-decoration: underline'>");
        pWin.document.write("<img src='" + img + "' border='1' alt='" + alt + "'/><br />");
        pWin.document.write(caption);
        pWin.document.write("</p>");
        pWin.document.write("</body>");
        pWin.document.write("</html>");
        pWin.document.close;
        pWin.focus();
  }
  
  function popPhoto2(img) {
        var myImg = new Image();
		myImg.src = "../resources/galleries/" + img;
   	    var width = myImg.width + 30;
        var height = myImg.height + 90;
        var pWin = window.open("display_photo.asp?p=" + img + "", "", "height="+height+", width="+width+", resizable=yes, scrollbars=yes");
        pWin.document.close;
        pWin.focus();
  }
