<!-- Begin
// Images list for rollovers

topoff = new Image ( );
topon = new Image ( );

// Images Source List for rollovers

topon.src = "picts/topon.gif";
topoff.src = "picts/topoff.gif";

// Disable Error Icon on Status Bar in Browser, comment out both lines below for debugging purposes.
//function blockError(){return true;}
//window.onerror = blockError;

// RAO, May 15, 2009 - Added for use to increment years on certain pages.
function getYear()
{
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   return year;
} // function getYear()

function button_on ( imgId )
{
  if ( document.images )
  {
    butOn = eval ( imgId + "on.src" );
    document.getElementById(imgId).src = butOn;
    
  }
}

function button_off ( imgId )
{
  if ( document.images )
  {
    butOff = eval ( imgId + "off.src" );
    document.getElementById(imgId).src = butOff;
  }
}

function getElementByIdCompatible (the_id) {
if (typeof the_id != 'string') {
return the_id;
}

if (typeof document.getElementById != 'undefined') {
return document.getElementById(the_id);
} else if (typeof document.all != 'undefined') {
return document.all[the_id];
} else if (typeof document.layers != 'undefined') {
return document.layers[the_id];
} else {
return null;
}
}

// -->


