

function whatPage(){

if(LOC != ""){
  if(document.getElementById(LOC).cells[0].className == "TIERTWO"){
    document.getElementById(LOC).cells[0].className = "TIERTWO_ON"
    } else if(document.getElementById(LOC).cells[0].className == "TIERTWO_SUB") {
    document.getElementById(LOC).cells[0].className = "TIERTWO_SUB_ON"
    }
  }else{ }}

function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  if(td.className == "TIERTWO"){
  }else{
    td.className = "TIERTWO_OVER"
  }}}

function cOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  if(td.className == "TIERTWO"){
  }else{
    td.className = "TIERTWO_OFF"
  }}}


function ButtonToggle(strWhich){
	if (document.images[strWhich].src.search(/_on.gif/) == -1 ) {;
		document.images[strWhich].src = "/encore/images/button_"+strWhich+"_on.gif"
		}
	else {
		document.images[strWhich].src = "/encore/images/button_"+strWhich+".gif"
		}
}

function ButtonOn(strImage){
  document.images[strImage].src = "/encore/images/button_"+strImage+"_on.gif"
}

function ButtonOff(strImage){
  document.images[strImage].src = "/encore/images/button_"+strImage+".gif"
}
