    function UploadPanthermanFile(FileName)
    {
      location.replace("http://pantherman.narod.ru/"+FileName);
      return true;
    }

    function OpenDocWindow(FileName)
    {
      window.open("http://pantherman.narod.ru/"+FileName, "", "toolbar=yes,menubar=yes,scrollbars=yes,status=yes,titlebar=yes,resizable=yes",false);
      if (null != window.event)
      {
          window.event.cancelBubble = true;
          window.event.returnValue = false;
      }
      return true;
    }

