
//    Java Scripting by
//    Gregory Matanjun
//    email gremon@tm.net.my
//    Copyright 1997


function browserCheck() {
  var Name = navigator.appName;
  return Name
}

var browser = browserCheck();
  // Detect IE 4
isIE4 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) > 3);


function doGlow(strength)
	{
	// This function pulsates the glow
	// If the strength it less than 10,
	// then increase it by one,
	// otherwise decrease it by one.
    
	
	if (strength < 10)
		{
	 	strength += 1;
		}
	else
		{
	 	strength -= 1;
		}

	// Give the values of the variable to the filter property,

	document.all.glowText.style.filter = "glow(color=#FFFFFF, strength=" + strength + ")";

	// Finally, wait 10 milliseconds and start it all again.
	setTimeout("doGlow(" + strength + ")", 100);
}

// Run the function for the first time
if (isIE4) doGlow(10);
