////////////////////////////////////////////////////////////
//
// (c) The Web Paving Company Ltd., / Sisters of Providence
// Map pop-up JS
// Last edit: June 23, 2004 
//
/////////////
//
function PopGallery(strUrl)
{
  windowX = 4;
  windowY = 4;
  windowWidth = 573;
  windowHeight = 500;
  var beIE = document.all?true:false;
  var autoclose = true;
  //
  var strFeatures = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width=' + windowWidth + ',height=' + windowHeight;
  //
  GALLERY=window.open(strUrl,"ESDWindow", strFeatures)
  GALLERY.blur()
  window.focus() 
  //GALLERY.resizeTo(windowWidth,windowHeight)
  GALLERY.moveTo(windowX,windowY)
  GALLERY.focus()   
  if(autoclose)
  {
    window.onunload = function()
    {
      GALLERY.close()
    }
  }
}

