function OnMouseOverCell(h) {	h.style.backgroundColor="#1F8DC2";	h.style.color="#000000";	if(document.getElementById(h.id + "link"))		document.getElementById(h.id + "link").style.color="#000000";}function OnMouseOutCell(h) {	h.style.backgroundColor="#000000";	h.style.color="#ffffff";	if(document.getElementById(h.id + "link"))		document.getElementById(h.id + "link").style.color="#FFFFFF";}
