function goToURL(linkElement)
{
 window.location = document.all[linkElement].href;
}
function tdOver(Element,linkElement)
{
 document.all[linkElement].style.textDecoration = "underline";
 Element.style.cursor = "hand";
}
function tdOut(Element,linkElement)
{
 document.all[linkElement].style.textDecoration = "none";
 Element.style.cursor = "default"; 
}
