<!--
$r=0;
$q=0;
function do_glowbutt() {
 d=document.getElementById("glowbutt");
if ($r < 301) {
 if ($r < 16) { d.style.filter='glow(strength='+$r+',color=gold) width:100% height:100%'; }
 if ($r==16) { d.style.filter='glow(strength=8,color=gold) width:100% height:100%'; }
} 
$r++;
 if ($r>=300) { stop_glowbutt(); } else {$q=setTimeout("do_glowbutt()",10);}	
}

function stop_glowbutt() {
 clearTimeout($q);
 d=document.getElementById("glowbutt");
 d.style.filter='glow(strength=0,color=gold) width:100% height:100% Alpha(Opacity=100, FinishOpacity=0, Style=2, StartX=10, StartY=40, FinishX=0, FinishY=0)';
$r=0;
}

$j=0;
$f=0;
function do_glow() {
 d=document.getElementById("butt1");
if ($j < 601) {
 if ($j < 16) { d.style.filter='glow(strength='+$j+',color=gold) width:100% height:100%'; }
 if ($j==16) { d.style.filter='glow(strength=8,color=gold) width:100% height:100%'; }
} 
$j++;
 if ($j>=600) { stop_glow(); } else {$f=setTimeout("do_glow()",1);}	
}

function stop_glow() {
 clearTimeout($f);
 d=document.getElementById("butt1");
 d.style.filter='glow(strength=0,color=gold) width:100% height:100% Alpha(Opacity=100, FinishOpacity=0, Style=2, StartX=10, StartY=40, FinishX=0, FinishY=0)';
$j=0;
}

$i=0;
$g=0;
function do_it(b) {
 if (b==0){
//  stop_it(1);
  d=document.getElementById("fred");
 } else { 
//  stop_it(0);
  d=document.getElementById("paul");
 }
 if ($i < 12) {
  d.style.filter='Wave(Add=0, Freq='+$i+', LightStrength=20, Phase=220, Strength=2) Alpha(Opacity=100, FinishOpacity=0, Style=4, StartX=10, StartY=40, FinishX=0, FinishY=0)';
  $i++;
 } else {
	d.style.filter='Wave(Add=0, Freq=1, LightStrength=20, Phase=220, Strength=2) Alpha(Opacity=100, FinishOpacity=0, Style=4, StartX=10, StartY=40, FinishX=0, FinishY=0)';
  $i=2;
 }
$g=setTimeout("do_it("+b+")",60);	
 if ($i==12) {
  clearTimeout($g);
  d.style.filter='Wave(Add=0, Freq=1, LightStrength=20, Phase=220, Strength=2) Alpha(Opacity=100, FinishOpacity=0, Style=4, StartX=10, StartY=40, FinishX=0, FinishY=0)';
 }
}

function stop_it(b) {
clearTimeout($g);
if (b==0){
d = document.getElementById("fred");
} else { d = document.getElementById("paul");}
  d.style.filter="Wave(Add=0, Freq=0, LightStrength=20, Phase=220, Strength=2) Alpha(Opacity=100, FinishOpacity=0, Style=4, StartX=10, StartY=40, FinishX=0, FinishY=0)";
}
-->
