// JavaScript Document
function overColor(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#ff6600";
}
}

function outColor(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#DADADA";
}
}