/*
 * Created by Carl Hindle, on 02 May 2004
              Technomage
              The Blue Wizard
              http://www.bluewizard.com.au

   Last Updated on 29 Apr 2005

 */

function StatusOn ( title ) {
  window.status = "Go to our '" + title + "' page.";
  return true;
}

function StatusOff ( ) {
  window.status = '';
  return true;
}

function StatusMsg ( sMessage ) {
  window.status = sMessage;
  return true;
}
