// Haramo Systems JavaScript Utilities v1.0

// Mathew D. O'Marah
// fozzy@mdoLive.com


// Display copyright information in the status bar
function Initialise_Page()
{
  window.defaultStatus='Copyright (C) Haramo Systems 1998 - 2004';
  return true;
}


// Display a message in the status bar when the mouse is moved over item
function ShowMsg(msgStr)
{
   document.returnValue = false;
   if (document.images)
   { 
      window.status = msgStr;
      document.returnValue = true;
   }
}
