﻿if (document.getElementById("hdn_ILPFlashingEffect").value == "True")
{
lbl_AudioControl = document.getElementById("lbl_AudioText");

message = lbl_AudioControl.innerText + ' ';
if (message == "undefined ")
{
    message = document.getElementById("lbl_AudioText").textContent + ' ';
}
neonbasecolor = lbl_AudioControl.style.backgroundColor;
neontextcolor = lbl_AudioControl.style.color;
neontextsize = lbl_AudioControl.style.fontSize;
neontextfont = lbl_AudioControl.style.fontFamily;
neontextIsBold = lbl_AudioControl.style.fontWeight;
neontextIsItalic = lbl_AudioControl.style.fontStyle;
neontextIsUnderlined = lbl_AudioControl.style.textDecoration;
flashspeed=100  //in milliseconds

document.getElementById("lbl_AudioText").style.display = 'none';

///No need to edit below this line/////

n=0
if (document.all||document.getElementById){
document.write('<font color="'+neonbasecolor+'" style="font-family:'+neontextfont+';font-size:'+neontextsize+';font-style:'+neontextIsItalic+';font-weight:'+neontextIsBold+';text-decoration:'+neontextIsUnderlined+'">')
for (m=0;m<message.length;m++)
document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
document.write('</font>')
}
else
document.write(message)

function crossref(number){
crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
return crossobj
}

function neon(){

//Change all letters to base color
if (n==0){
for (m=0;m<message.length;m++)
//eval("document.all.neonlight"+m).style.color=neonbasecolor
crossref(m).style.color=neonbasecolor
}

//cycle through and change individual letters to neon color
crossref(n).style.color=neontextcolor

if (n<message.length-1)
n++
else{
n=0
clearInterval(flashing)
setTimeout("beginneon()",1500)
return
}
}

function beginneon(){
if (document.all||document.getElementById)
flashing=setInterval("neon()",flashspeed)
}
beginneon()
}