function mouseOn(td){

	if(document.getElementById||(document.all && !(document.getElementById))){

		td.style.backgroundColor="#D1E0D1";

	}

}



function mouseOut(td){

	if(document.getElementById||(document.all && !(document.getElementById))){

		td.style.backgroundColor="";

	}

}


function mouseOutw(td){

	if(document.getElementById||(document.all && !(document.getElementById))){

		td.style.backgroundColor="#CCCCCC";

	}

}
