<!--
  is_nav = 0;
  is_loaded = 0;

  var banner_width = 90;
  var banner_height = 140;
  var banner_left = 805;
  var banner_margin_top = 5;
  var banner_delay = 10;
    
  function initBanner(html) {
    var agt=navigator.userAgent.toLowerCase();
    if (navigator.appName == "Microsoft Internet Explorer") {
      is_IE = 1;
      if (navigator.appVersion.indexOf('MSIE 5') != -1)
        IEVersion = 5;
      else
        IEVersion = parseInt(navigator.appVersion);
    }
    is_loaded = 1;
    
    new_top = document.body.scrollTop;
    new_top += banner_margin_top;
    
    if (is_IE)
      document.write('<div id="banner_layer" style="position: absolute; top: ' + new_top + '; left: ' + banner_left + '; width: ' + banner_width + '; height: ' + banner_height + '">');
    else
      document.write('<layer name="banner_layer" top=' + new_top + ' left=' + banner_left + ' width=' + banner_width + ' height=' + banner_height + '>');
      
    document.write(html);
      
    if (is_IE)
      document.write('</div>');
    else
      document.write('</layer>');
      
    ScrollBanner();
  }
      
  function ScrollBanner() {
    new_top = document.body.scrollTop;
    new_top += banner_margin_top;
    
    if (is_IE) {
      if (banner_layer)
        if (!(banner_layer.length)) {
          banner_layer.style.top = new_top;
        }
    }
    window.setTimeout("ScrollBanner()", banner_delay);
  }
  
//-->
