function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2;
else
document.all.glowtext[which].filters[0].strength=3;
}

function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2;
else
document.all.glowtext.filters[0].strength=3;
}

function startglowing(){
if (document.all.glowtext){
  if(glowtext.length){
    for (i=0;i<glowtext.length;i++){
      document.all.glowtext[i].filters[0].color=document.all.glowtext[i].glowcolor;
      eval('setInterval("glowit('+i+')",150)');
    }
  }
  else{
    document.all.glowtext.filters[0].color=document.all.glowtext.glowcolor;
    setInterval("glowit2(0)",150);
  }
}
}

if (document.all)
window.onload=startglowing;

function DSFireText(text){
    document.write("<APPLET CODE='clientscript/DS_FireText.class' width='100' height='15'><PARAM NAME=credits VALUE='Applet by Dario Sciacca (www.dseffects.com)'><PARAM NAME=text VALUE='" + text + "'><PARAM NAME=textfont VALUE='Helvetica'><PARAM NAME=textstyle VALUE='bold'><PARAM NAME=textsize VALUE='16'><PARAM NAME=intensity VALUE='4'><PARAM NAME=interactive VALUE='out'><PARAM NAME=overtext1 VALUE=' '><PARAM NAME=overtexty1 VALUE='10'><PARAM NAME=overtextcol1 VALUE='0000ff'><PARAM NAME=overtextsize1 VALUE='24'><PARAM NAME=overtexttype1 VALUE='scrollleft'><PARAM NAME=overtextspeed1 VALUE='2'><B>Sorry, your browser doesn't support Java.</B></APPLET>");
}