function yellowFade(el)
{
  var b = 100;
  function f()
  {
    el.style.background = 'rgb(255,255,'+ (b+=4) +')';
    if (b < 255)
    {
      setTimeout(f, 60);
    }
  };
  f();
}
