// =====================
// Animated Highlighting
// =====================
function Neon() {
  totalLength = message1.length
  if (n==0) {
    for (m=0;m<totalLength;m++) tempref[m].style.color=neonbasecolor 
  }
  tempref[n].style.color=neontextcolor 
  if (n<tempref.length-1)
    n++
  else {
    n=0
    clearInterval(flashing)
    setTimeout("BeginNeon()",1000) 
    return
  }
}

function BeginNeon(){
  if (document.all) flashing=setInterval("Neon()",flashspeed)
}
