 function tdON(td,enlace,color)
	{
	td.style.cursor='hand';
	td.bgColor=color;
	enlace.style.color='#000084';
	}
 function tdOFF(td,enlace,color)
	{
	td.style.cursor='default';
	td.bgColor=color;
	enlace.style.color='#FFFFFF';
	}
 function tdCLICK(td)
	{
	td.children.tags('A')[0].click();
	}