
	function mOver(tdId,BackColour,ForeColour){
		if(document.getElementById){
			document.getElementById(tdId).style.color = ForeColour;
			document.getElementById(tdId).style.backgroundColor = BackColour;}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = BackColour;}
		document.getElementById(tdId).style.cursor='pointer';
		}
			
	function mOut(tdId,BackColour,ForeColour){
		if(document.getElementById){
			document.getElementById(tdId).style.color = ForeColour;
			document.getElementById(tdId).style.backgroundColor = BackColour;}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = BackColour;}
		document.getElementById(tdId).style.cursor='';
		}
