  setTimeout ('changePage()', 0);
  function changePage() {
    var topWin = null;
    var w = self;
    while(w.parent!=null && w.parent!=w){
      if(w.IsTopFrame || w.frames.ADMIN_MENU){
        topWin = w;break;
      }
      w = w.parent;
    }
    if(topWin==null)topWin = w;
    if(topWin!=null && topWin!=self){
      var sURL = ''+document.location;
      if(sURL.indexOf('?')>-1){
        topWin.location=sURL + '&GoToTop=0';
      }else{
        topWin.location=sURL + '?GoToTop=0';
      }
    }
  }
  function loginFormSubmit() {
    document.LoginForm.Password.value = document.LoginForm.PasswordView.value ;
    document.LoginForm.PasswordView.value = '';
  }