
<!--
	window.name = "main_frame";

      var msg='';
      function pollMessage()
      {
        window.status = msg;
        setTimeout( "pollMessage()",9000);
      }
// -->


<!--
var hellotext=" Body loading "		//Starttext in der Anzeige
var started=false				
var step=0				//Start des ersten Schrittes
var times=1					
function welcometext()
{
	times--
	if (times==0)
	{ 
		if (started==false)
		{
			started = true;
			window.status = hellotext;			//Aufruf der Message
			setTimeout("anim()",1); 			
		}
		thetext = hellotext;
	}
}

function showstatustext(txt)			
    {
	 thetext = txt;					
	setTimeout("welcometext()",4000)		//Geschwindigkeit der Animation
	times++
    }
function anim()
{
//Anzahl der Textanimation
     	if(msg != '... totally managed!  Ihr Browser.'){
		step++
	      if (step==9) {step=1}
	      if (step==1) {window.status=':    '+thetext+':    '}
	      if (step==2) {window.status=' :   '+thetext+' :   '}
	      if (step==3) {window.status='  :  '+thetext+'  :  '}
	      if (step==4) {window.status='   : '+thetext+'   : '}
	      if (step==5) {window.status='    :'+thetext+'    :'}
	      if (step==6) {window.status='   : '+thetext+'   : '}
	      if (step==7) {window.status='  :  '+thetext+'  :  '}
	      if (step==8) {window.status=' :   '+thetext+' :   '}
	      setTimeout("anim()",100);
	   
	}
	else{
		pollMessage();
	}
		
}
welcometext();
//-->

