// -----------------------------------------------------------------------------

function GetVersion() {
// Purpose :  Return the current version.
// Input :
//    <none>
// Output :
//    <Return value> :  String representing the current version (Year/Month/Day).
// Note :
//    Netscape :  You will need to have this function be a method of the object
//       if you intend to call it from one of that object's methods.
//       This is not needed under Internet Explorer.
// Author :  Jerome Daoust.

   var c_VersionYearMonthDay = "2006/8/17"

   return c_VersionYearMonthDay
}
// -----------------------------------------------------------------------------

