function mouseOn(td){

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

		td.style.Color="#B3B3B3";
		

	}

}



function mouseOut(td){

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

		td.style.backgroundColor="";

	}

}

