﻿// JavaScript File

//This funciton sets the Active link cell border to invisible and makes the link 'unclickable'
function SetactiveTopLink( linkID )
{
   var activeTopLink;
   //debugger;
   activeTopLink = document.getElementById( linkID + 'Link' );
   activeTopLink.style.display = "none";
   activeTopLink.parentNode.style.borderBottom = '0px';
   activeTopLink.parentNode.style.backgroundColor = '#990000';
   activeTopLink.parentNode.style.backgroundImage = "url('/images/NAV_image.jpg')";
   activeTopLink.parentNode.style.backgroundRepeat = 'repeat-x';
   activeTopLink.parentNode.style.backgroundPosition = 'bottom';   
   
   //activeTopLink.parentNode.style.borderRight ="solid 1px #CCCCCC";    
   //activeTopLink.parentNode.style.borderLeft ="solid 1px #CCCCCC";
   
   document.getElementById( linkID + 'Span' ).style.display="";
}