function RollOver(oTd, col) 	
	{if (!oTd.contains(event.fromElement)) 
		{
		oTd.bgColor=col;
		//oTd.bgColor="#6699cc";
		}}  
function RollOut(oTd, col) 
	{if (!oTd.contains(event.toElement)) 
		{
		oTd.bgColor=col
		//oTd.bgColor="#23559c";
		}}
