<p><span id="theText" style="width:100%"> </p>
<p align="center"><font color="#FFF9F2" size="5"
face="Monotype Koufi"><strong>جافا الفنان</strong></font><font color="#FFF9F2" size="4"
face="Tahoma"><strong> </strong></font><font color="#FFF9F2"
size="6"><strong> </span><script language="JavaScript"><!--
/*
جافا الفنان
www.alfnnan.net*/
//range of glowing
var from = 3;
var to = 7;
//speed of pulsing
var delay = 85;
//color of glow, name or RGB value (example:'#')
var glowColor = "#FFBC6A";
//NO MORE EDITING!!!
var i = to;
var j = 0;
//can be called here or whenever you want the text to start pulsing
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
// --></script> </strong></font></p>