page=window.location.href; 
browserName = navigator.appName; 
browserVer = parseInt(navigator.appVersion);
if (browserName.length == 0) { browserName = 'Unknown'; }

function PopUpMap(where) {
  InterfaceSize = 'scrollbars=yes,width=650,height=550';
  InterfaceMove = 50;
  
  if (window.MapWindow) { 
    if (window.MapWindow.open || !window.MapWindow.closed) { 
	  window.MapWindow.close();
	}
  }
  
  MapWindow = window.open(where,"EventInventory","toolbar=no,location=0,directories=no,status=yes,menubar=0,resizable=1,copyhistory=0,"+InterfaceSize); 
 // MapWindow.moveBy(InterfaceMove,50); 
}

loaded = true;