try{
function ProgressControl(){
}
ProgressControl.prototype=new GControl();
ProgressControl.prototype.initialize=function(_1){
this._container=document.createElement("div");
this._container.style.fontFamily="Arial";
this._container.style.backgroundColor="#ffffff";
this._container.id="mapProgress";
_1.getContainer().appendChild(this._container);
return this._container;
};
ProgressControl.prototype.getDefaultPosition=function(){
return new GControlPosition(G_ANCHOR_TOP_RIGHT);
};
ProgressControl.prototype.setText=function(_2){
this._container.innerHTML=_2;
};
}
catch(e){
}

