// JavaScript Document
<!--
var textcolor= new Array()
textcolor[0]="#0022ff"
textcolor[1]="#0022ff"
textcolor[2]="#0022ff"
textcolor[3]="#111111"
textcolor[4]="#222222"
textcolor[5]="#333333"
textcolor[6]="#444444"
textcolor[7]="#555555"
textcolor[8]="#666666"
textcolor[9]="#777777"
textcolor[10]="#888888"
textcolor[11]="#999999"
textcolor[12]="#aaaaaa"
textcolor[13]="#bbbbbb"
textcolor[14]="#cccccc"
textcolor[15]="#dddddd"
textcolor[16]="#eeeeee"
textcolor[17]="#FF0000"
textcolor[18]="#FF0000"

var i_strength=0
var i_message=0
var timer

function glowtext() { 
if(document.all) {
if (i_strength <=17) {
document.getElementById("glowdiv").style.filter="glow(color="+textcolor[i_strength]+", strength=3)"
i_strength++
timer=setTimeout("glowtext()",100)
}
else {
clearTimeout(timer)
setTimeout("deglowtext()",1000)
}
} 
}

function deglowtext() { 
if(document.all) {
if (i_strength >=0) {
document.getElementById("glowdiv").style.filter="glow(color="+textcolor[i_strength]+", strength=4)"
i_strength--
timer=setTimeout("deglowtext()",100)
}
else {
clearTimeout(timer)
i_message++
setTimeout("glowtext()",1000)
}
} 
}


//-->
