function displayPage()
{
  // Check for active alarms
  checkAlarms();

  // Set data reload timer if alarms are displayed
  if ( bDisplayAlarms == true )
  {
    var nReloadMilliseconds = ((nReloadMinutes * 60) + nReloadSeconds) * 1000;
    timeout_id = setTimeout("reloadData()", nReloadMilliseconds);
  }
  return true;
}

// Reload the data on the page
function reloadData()
{
  displayPage();
}

function preparePage()
{
  // Display the Page
  displayPage();
}

