var hash=new HashMap();
hash.readString(window.location.search.substr(1));
var currentPage=hash.get('page');
window.onload=function(){
  top.historyFrameLoaded=true;
  loadPage();
}
function loadPage(){
  if(top.mainFrameLoaded){
    top.mainFrame.pageHandler(currentPage);
  }else{
    window.setTimeout(loadPage,100);
  }
}
