var glow_from = 1;
var glow_to = 12;
var glow_delay = 70;
var glow_Color = "#800000";
var glow_i = glow_to;
var glow_j = 0;

textPulseDown();

function textPulseUp() {
 if (!document.all) return
 if (glow_i < glow_to) {
	theText.style.filter = "Glow(Color=" + glow_Color + ", Strength=" + glow_i + ")";
	glow_i++;
	theTimeout = setTimeout('textPulseUp()',glow_delay);
	return 0;
 }
 if (glow_i = glow_to) {
	theTimeout = setTimeout('textPulseDown()',glow_delay);
	return 0;
 }
}

function textPulseDown() {
 if (!document.all) return
 if (glow_i > glow_from) {
	theText.style.filter = "Glow(Color=" + glow_Color + ", Strength=" + glow_i + ")";
	glow_i--;
	theTimeout = setTimeout('textPulseDown()',glow_delay);
	return 0;
 }
 if (glow_i = glow_from) {
	theTimeout = setTimeout('textPulseUp()',glow_delay);
	return 0;
 }
}

