click=0;
function s(n,m) 
{
 for(x=1;x<=m;x++)
 {
  if(document.all)
  {
   document.all('t'+x).style.removeAttribute("backgroundColor","false");
   document.all('a'+x).style.color="#FFFFFF";
   if(x==n)
   {
    if(n!=0) {
		document.all('t'+n).style.backgroundColor='ffCC33';
		document.all('a'+n).style.color="#0000FF";}
   }
  }
 }
}
function a(n,m) 
{
 click=n;
 s(n,m);
}

