////////////////////////////////////////////////////////////
//
// (c) The Web Paving Company Ltd., / AWCCA
// Map pop-up JS
// Last edit: Aug. 09, 2004 
//
/////////////
//
function PopWindow(strUrl)
{
  windowX = 20;
  windowY = 20;
  windowWidth = 472;
  windowHeight = 240;
  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;
  //
  POPPED=window.open(strUrl,"PoppedWindow", strFeatures)
  POPPED.blur()
  window.focus() 
  //POPPED.resizeTo(windowWidth,windowHeight)
  POPPED.moveTo(windowX,windowY)
  POPPED.focus()   
  if(autoclose)
  {
    window.onunload = function()
    {
      POPPED.close()
    }
  }
}


