//MELDUNG:  
//URL: http://www.naturarena.de/gastronomie_1.aspx
//Ziel: _top


// Browser test
var detect = navigator.userAgent.toLowerCase();
var OS,browser,version,total,thestring;

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

if (!checkIt('compatible'))
{
   // Browser-Check: Kein Internet Explorer - Also kein Ticker
   document.write('<a href="http://www.naturarena.de/gastronomie_1.aspx" target="_top" class="fliess2"> </a>');
 
}
else
{
   // Browser-Check: Internet Explorer - Also kein Ticker

   //Specify the marquee's width (in pixels)

   var marqueewidth=425

   //Specify the marquee's height (in pixels, pertains only to NS)

   var marqueeheight=15

   //Specify the marquee's scroll speed (larger is faster)

   var speed=5

   //Specify the marquee contents
   var marqueecontents='<a href="http://www.naturarena.de/gastronomie_1.aspx" target="_top" class="fliess2"> </a>'
   if (document.all)
      {
         document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>')
      }
} // Netscape Check ende

function regenerate()
{
   window.location.reload()
}

function regenerate2()
{
   if (document.layers)
   {
      setTimeout("window.onresize=regenerate",450)
      intializemarquee()
   }
}

function intializemarquee()
{
   document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
   document.cmarquee01.document.cmarquee02.document.close()
   thelength=document.cmarquee01.document.cmarquee02.document.width
   scrollit()
}

function scrollit()
{
   if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1))
   {
      document.cmarquee01.document.cmarquee02.left-=speed
      setTimeout("scrollit()",100)
   }
   else
   {
      document.cmarquee01.document.cmarquee02.left=marqueewidth
      scrollit()
   }
}
window.onload=regenerate2