//<script language="javascript">  var t;
  var current;
  var news_x, news_y;
  var NS = false;
  var scroll = true;
  
  function setDIVXY(el,x,y) {
    if (NS) {
      el.x = x;
      el.y = y;
    } else {
      el.style.left = x;
      el.style.top = y;
    }
  }  
  function wa_scroll_news() {
    
      n = document.all("wa_news" + current);
      n.style.visibility = "hidden";
      if (scroll) {
      current = current + 1;
      }      
      if (current>last) current = 1;
      n = document.all("wa_news" + current);
      setDIVXY(n,news_x,news_y);
      n.style.visibility = "";
      t = setTimeout("wa_scroll_news()", 3000);
    
  }
  function wa_news() {
    anc = document.all("wa_news_anchor");
    el = anc;
    news_x = el.offsetLeft;
    while ((el = el.offsetParent) != null) news_x += el.offsetLeft;
    el = anc;
    news_y = el.offsetTop;
    while ((el = el.offsetParent) != null) news_y += el.offsetTop;
    news_y = news_y - 3;
    //t = setTimeout("wa_scroll_news()", 100);
    current = last;    wa_scroll_news();
  }
  function stop_scroll(stop) {
    if (stop) {
        scroll = false;
    } else {
        scroll = true;
    }
  }//</script>