/**
/* buttons.js
/*
/* @copyright: 2009 by Thomas M. Stambaugh & Zeetix, LLC (http://www.zeetix.com)
/* All rights reserved.
/*
/* The contents of this file may not be copied, duplicated, or used without the
/* written consent of Zeetix, LLC.
**/

function majorButtonOn_(aCellId) {
  var anElement = document.getElementById(aCellId);
  var aStyle = anElement.style;
  aStyle.backgroundColor = "#F8A844";
}

function majorButtonOff_(aCellId) {
  var anElement = document.getElementById(aCellId);
  var aStyle = anElement.style;
  aStyle.backgroundColor = "#A84444";
}
