 function Popup(path, caption, orientation) {
          if (orientation == "h") {
            var w = 700;
            var h = 540;
          }

          if (orientation == "v") {
            var w = 540;
            var h = 700;
          }

          var width = w+25;
          var height = h+25;

          var winl = (screen.width - width) / 2;
          var wint = (screen.height - height) / 2;
  
        win = window.open('', 'Window', 'height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars=no,resizable');
          win.document.write('<html><head><title>Photo Gallery</title></head><body bgcolor="#B0C0D0" TEXT="#3D536B" ><table align=center width="100%" height="100%" ><tr><td align=center valign=middle><img src="'+path+'" alt="'+caption+'" height="'+h+'" width="'+w+'"><br>'+caption+'</td></tr></table></body></html>');

          if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
      }
