function whatPage(LOC){
if(document.getElementById||(document.all && !(document.getElementById))){
	
  if( document.getElementById(LOC).className == "TIERTWO"	) {
		document.getElementById(LOC).className = "TIERTWO_ON"
		
    } else if(document.getElementById(LOC).className == "TIERTWO_SUB") {
    	
		document.getElementById(LOC).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"
  }
}
}
