var loadingMsg="Loading Locations...";var updateMsg="Updating Map...";var loadingBar;var markerPos;var p;function LoadingMapControl(a){this.map_=a}function make_map_control(b){var a=document.createElement("div");a.innerHTML=loadingMsg;a.id="map_loading_container";a.style.display="block";a.style.position="absolute";a.style.width="300px";a.style.padding="13px 10px 10px 10px";a.style.fontSize="14px";a.style.fontWeight="bold";a.style.height="20px";a.style.border="1px solid #ccc";a.style.backgroundColor="white";a.style.textAlign="center";markerPos=getMPos(b,b.getCenter());a.style.top=markerPos.top-40+"px";a.style.left=markerPos.left-150+"px";return a}function LoadingControl(a){this.container_=make_map_control(a);this.map_=a;document.body.appendChild(this.container_);this.operations_=0;this.current_=0}LoadingControl.prototype.start=function(a){if(a==="update"){this.container_.innerHTML=updateMsg}else{this.container_.innerHTML=loadingMsg}this.container_.style.display="block";this.container_.style.opacity="0.75"};function doRemove(){loadingBar.container_.style.display="none"}LoadingControl.prototype.remove=function(){p=2000;if(typeof(showlocationlist)!=="undefined"){p=showlocationlist.length*25}window.setTimeout("doRemove()",p)};
