// ==========================================================
// Error Event Handler:
// Used to Stop those Pesky Scipt Message Box's appearing
//  window.onerror = handleError;
//  function handleError()
//  {
//    //Basically this ignores all errors to ensure the user does not see 
//    //the alert message
//    return true;
//  }
// ==========================================================

// ==========================================================
// MouseOver Event Handlers:
// Used to make TD cell appear like a Button for Navigation
  function CellMouseOver(Cell)
  {
    Cell.bgColor = "#FFCC00";
  }
  function CellMouseOut(Cell)
  {
    Cell.bgColor = "#3B4B92";
  }
// ==========================================================

// ==========================================================
// Scroll page on opening
//  var sp = 400
//  function scroll()
//  {
//    if (sp<-100) sp=400;
//    sp--;
//    news.style.top=sp;
//    setTimeout('scroll()',30);
//  }
// ==========================================================


