<!--
function hirstat(){
window.status = '';
return true;
}
var from = 1;
var to = 10;
var delay = 50;
var glowColor = "#DBBD9B";
var i = to;
var j = 0;
textDown();
function textUp(){
if (!document.all)
return
if (i < to){
HirText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textUp()',delay);
return 0;
}
if (i = to){
theTimeout = setTimeout('textDown()',delay);
return 0;
}
}
function textDown(){
if (!document.all)
return
if (i > from){
HirText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textDown()',delay);
return 0;
}
if (i = from){
theTimeout = setTimeout('textUp()',delay);
return 0;
}
}
//-->