// JavaScript Document
function cOn1(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#333366";
}
}
function cOut1(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="";
}
}
// JavaScript Document
function cOn2(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="333366";
}
}
function cOut2(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="";
}
}