var aktiv = false;
var txtStart;
var txt;

function lauftext()
{  window.document.title = txt;
   txt = txt.substr( 1, txt.length - 1 ) + txt.charAt( 0 );
}

function los()
{  stopp();
	aktiv = window.setInterval('lauftext()',150);
}

function stopp()
{  window.clearInterval(aktiv);
   txt = txtStart;
   window.document.title = txt;
}

function laufInit(text)
{  var index = 0;
	txtStart = String.fromCharCode(160) + "Sandmeiers"
   			+ String.fromCharCode(160) + "Homepage:"
            + String.fromCharCode(160)
            + String.fromCharCode(160) + text
            + String.fromCharCode(160) + String.fromCharCode(160) + String.fromCharCode(160);
   while (index > -1)
   {	index = txtStart.indexOf(" ", index);
   	if ( index > -1 )
      	txtStart = txtStart.substring(0, index) + String.fromCharCode(160) + txtStart.substring(index + 1, txtStart.length);
   }
   txt = txtStart;

   window.body2.onblur = los;

   window.onfocus = stopp;
   window.document.onfocus = stopp;
   window.fix.onfocus = stopp;
   window.fix3.onfocus = stopp;
   window.body2.onfocus = stopp;
   window.reiter.onfocus = stopp;
   window.reiterTop.onfocus = stopp;
   window.linie2Top.onfocus = stopp;
   window.tabTop.onfocus = stopp;
   window.trenn.onfocus = stopp;
   window.trenn2.onfocus = stopp;
   window.linietop.onfocus = stopp;
}