//<!--
function Arr(src,clrAlt) 
{
  if (!src.contains(event.fromElement)) 
	{
	  src.style.cursor = 'crosshair';
	  src.bgColor = clrAlt;
	}
}
function Arr_2(src,clrAlt)
{
  if (!src.contains(event.fromElement))
	{
	  src.style.cursor = 'hand';
	  src.bgColor = clrAlt;
	}
}
function Aba(src,clrOri) 
{
	if (!src.contains(event.toElement))
	{
	  src.style.cursor = 'default';
	  src.bgColor = clrOri;
	}
}
function Cli(src) 
{
  if(event.srcElement.tagName=='td')
	{
	  src.children.tags('a')[0].click();
        }
}
// -->
