/*==============================================================================
                             Property of M2Software
================================================================================
Project :   M2Software - NMDRC Results
File    :   m2.js
Date    :   Apr 14, 2004
Author  :   Michael Medwin
Purpose :
Notes   :   
Modified:
==============================================================================*/


//------------------------------------------------------------------------------
function Trim(pStr){
//------------------------------------------------------------------------------
  S = "" + pStr;
  x = S.length - 1;
  for( ; x >= 0 ; x--){
    if(S.charAt(x) != " ") break;
  }
  return S.substring(0,x+1);
}

//------------------------------------------------------------------------------
function CreateRandomNumber(maxInt){
//------------------------------------------------------------------------------
  return Math.round(Math.random() * maxInt);
}

//------------------------------------------------------------------------------
function ViewVars(){
//------------------------------------------------------------------------------
  alert("\nSeason=" + parent.gSeason + 
        "\nTitle =" + parent.gTitle);
}
