<!--
function cellOver(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor="#cccccc";
	}
}

function cellOut(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor="#C6E6FF";
	}
}
//-->
