if(navigator.appVersion.charAt(0)>=4 && (navigator.appVersion).indexOf("MSIE") != -1) isIE4 = true;
else  isIE4 = false;

if(isIE4) {
  alpha_fadein  = new Object();
  alpha_fadein.step = 1
 }

function alpha_fadein_anima(id) {
 el = document.all(id);
 fil= el.filters['alpha'];
  if(fil.opacity <= 100) {
    fil.opacity += alpha_fadein.step; fil.finishOpacity += alpha_fadein.step;
  }
 }

if(isIE4) {
  alpha  = new Object();
  alpha.step = 1;
 }

function alpha_anima(id) {
 el = document.all(id);
 fil= el.filters['alpha'];
  if(fil.opacity <= 100) {
    fil.finishX += alpha.step; fil.finishX += alpha.step;
  }
 }


