function addLink()
{  
    //var body = document.getElementsByTagName("tbody");
    //var tagTd = body[0].getElementsByTagName("td");
   // for(var i=0; i< tagTd.length ; i++)
   // { 
	//	tagTd[i].onclick = "alert('test');";
		//tagTd[i].setAttribute("onClick", "alert('test');");
         //var tagA = tagTd[i].getElementsByTagName("a");
          //var  link = tagA[0].getAttribute("href");

          //tagTd[i].innerHTML = "<a href=\""+link+"\">" +tagTd[i].innerHTML + "</a>";
      //    tagTd[i].style.cursor = 'pointer';
      //}
}       

function gotoTdHref(tagTd)
{  
    var tagA =  tagTd.getElementsByTagName("a");
    var  link = tagA[0].getAttribute("href");
	document.location.href = link;
}