// [IdentStart] Dataradio $Revision: 1.12 $ [IdentEnd] -->
var FirstA = true;
var OldALink = new Object();

function ActiveLink(NewALink) {
	var LnkPrts = new Array();
	var HlpLink = new Object();
	var text = null;
  if (!FirstA) {
    OldALink.style.backgroundColor = NewALink.style.backgroundColor; //"FFFFFF";
  }
  NewALink.style.backgroundColor = "Blue";
  OldALink = NewALink;
  FirstA = false;
	if (NewALink.text) text = NewALink.text;                 // Most of the world
	else if (NewALink.innerText) text = NewALink.innerText;  // uSoft bug
	if ((text != null) && (text != '') &&
	    (text.match("Help") == null)) {         // If it isn't for "Help"...
	  LnkPrts = NewALink.href.split("/");
	}  // for "Help"?
}  // turnon

function HilightLink( NewHLink ) {
  NewHLink.style.color = "f0e41C";
}  // HilightLink

function LolightLink( NewHLink ) {
  NewHLink.style.color = "D7CB43";
}  // LolightLink

function FirstLink() {
  document.anchors[0].focus();
  ActiveLink(document.anchors[0]);
}  // FirstLink

