<!--
	function mOver(tdId){
		if(document.getElementById){
			document.getElementById(tdId).style.backgroundColor = '#FFCC66';
		}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = '#FFCC66';
		}
	}

	function mOut(tdId){
		if(document.getElementById){
			document.getElementById(tdId).style.backgroundColor = '#000000';
		}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = '#000000';
		}
	}
//-->