<!--
// $Id: helpers.js,v 1.2 2009/09/23 14:00:45 shelton Exp $

// Global helper constatns to display in status line
helpers = new Array();

helpers['openoffice'] = "Написать разработчику сайта";

// Set status message, according passed code
function setstatus(statusid)
{
  window.status = helpers[statusid];
}

// Clear status message
function clearstatus()
{
  window.status = "";
}
-->