//copyright   : (c) Borucinski GrafiX
//autor       : Konrad Borucinski
//description : marquee (laufschrift) für netscape-browser
//            : (mit hilfe von ilayer und layer)

function Is() {
    var agent = navigator.userAgent.toLowerCase();
    this.major = parseInt(navigator.appVersion);
    this.minor = parseFloat(navigator.appVersion);
    this.ns  = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
    this.ns2 = (this.ns && (this.major == 2));
    this.ns3 = (this.ns && (this.major == 3));
    this.ns4b = (this.ns && (this.minor < 4.04));
    this.ns4 = (this.ns && (this.major >= 4));
    this.ie   = (agent.indexOf("msie") != -1);
    this.ie3  = (this.ie && (this.major == 2));
    this.ie4  = (this.ie && (this.major >= 4));
    this.op3 = (agent.indexOf("opera") != -1);
    this.win   = (agent.indexOf("win")!=-1);
    this.mac   = (agent.indexOf("mac")!=-1);
    this.unix  = (agent.indexOf("x11")!=-1);
}

var is = new Is();
        
function bix_regen()
{
  window.location.reload();
}

function bix_regen2()
{
//  if (document.layers)
  if (is.ns4)
  {
//    setTimeout("window.onresize=bix_regen",450);
    bix_initMarquee();
  }
}

function bix_initMarquee()
{
  document.LayMarquee.document.marquee01.document.marquee02.document.write('<nobr>'+mtext+'</nobr>');
  document.LayMarquee.document.marquee01.document.marquee02.document.close();
  breite=document.LayMarquee.document.marquee01.document.marquee02.document.width;
  bix_scrollit();
}

function bix_scrollit()
{
  if (document.LayMarquee.document.marquee01.document.marquee02.left>=breite*(-1))
  {
    document.LayMarquee.document.marquee01.document.marquee02.left-=speed;
    setTimeout("bix_scrollit()",100);
  }
  else
  {
    document.LayMarquee.document.marquee01.document.marquee02.left=mwidth;
    bix_scrollit();
  }
}

