<!--
/*----------------------------
/*-- EXEMPLE --
/*----------------------------
<style>
#glowtext{filter:glow(color=#ff8080,strength=5);width:100%}
</style>

<span id=glowtext>ScriptsPlus.com</span>
<span id=glowtext>ScriptsPlus.com</span>
*/

function glowit(which)
{
	if (document.all.glowtext[which].filters[0].strength==2)
		document.all.glowtext[which].filters[0].strength=4
	else
		document.all.glowtext[which].filters[0].strength=2
}

function glowit2(which)
{
	if (document.all.glowtext.filters[0].strength==4)
		document.all.glowtext.filters[0].strength=2
	else
		document.all.glowtext.filters[0].strength=4
}

function startglowing()
{
	if (document.all.glowtext&&glowtext.length)
	{
		for (i=0;i<glowtext.length;i++)
			eval('setInterval("glowit('+i+')",150)')
	}
	else if (glowtext)
		setInterval("glowit2(0)",200)
}

if (document.all)
	window.onload=startglowing	
//-->
