// JavaScript Document

<!-- Hide script from old browsers

function ChangeLinkStyle(objLinkItem, strNewColor, strUnderLine)
{
   if (nVersion > 3)
	    { 
   		objLinkItem.style.color = strNewColor;   
	 		ChangeUnderLine(objLinkItem, strUnderLine);
	    }
}

function ChangeUnderLine(linkItem, strUnderLine)
{
   if (nVersion > 3)
      linkItem.style.textDecoration = strUnderLine;   
}
//"this.style.color='#632e9c'; this.style.textDecoration='underline';" onMouseOut="this.style.color='#0000cc'; this.style.textDecoration='none';"
// End hiding script from old browsers -->