function fLightOn() {
src = event.toElement;
   if (src.tagName == "A") {
      src.oldcol = src.style.color;
      src.style.color = "red";
   }
}

function fLightOff() {
src=event.fromElement;
   if (src.tagName == "A") {
      src.style.color = src.oldcol;
   }
}

function fMOver( cInfo ) {
 if ( cInfo == null ) {
   cInfo = "Click here.";
 }
 window.status = cInfo;
}

function fMOut() {
 window.status = document.title;
}
