function open_window(url, w, h)
   {
   var winsize = ',width='+w+',height='+h;
   var winpos  = (window.screen && document.layers) ? 
',screenX='+((screen.availWidth-w)/2)+',screenY='+((screen.availHeight-h)/2) 
:
                 (window.screen && !document.layers) ? 
',left='+((screen.availWidth-w)/2)+',top='+((screen.availHeight-h)/2) : '';

   imagewin = 
window.open(url,'imageWin','toolbar=no,scrollbars=yes,location=no'+winsize+winpos);
   imagewin.focus();
   }
   
function PopupTallWin(ImgFile) {
  pWindow = window.open("woodstick.html?" + ImgFile, "YesPop", "toolbar=no, width=480, height=640, status=no, resizable=no, menu=no, scrollbars=no, left=50,top=25");
}
function PopupWideWin(ImgFile) {
  pWindow = window.open("woodstick2.html?" + ImgFile, "MyPop", "toolbar=no, width=640, height=480, status=no, resizable=no, menu=no, scrollbars=no, left=50,top=25");
}