<!--

// ++++ Fenster auf volle Bildschirmgröße öffnen ++++
function resize()
    {
	var hoehe=screen.height; //Bildschirmhöhe
	var breite=screen.width;//Bildschirmbreite

	self.resizeTo(breite,hoehe);
	self.moveTo(0,0);
    }



// ++++ Timer in Verbindung mit Popup-Fenster ++++
function uhr()
	{
	var timer;timer=setTimeout('open_popup()', 1000)
	}
	

// ++++ Popup-Fenster aufrufen ++++
function open_popup(WindowURL)
	{
        var attribute="resizable=no,menubar=no,toolbar=no,location=no,status=no,width=200,height=300,,top=0,top="+((screen.height-760)/3)+",left="+((screen.width-180)/2);
        popup=window.open('popup/popup.htm','fensterpopup',attribute);
	}


// ++++ Hintergrundmusik-Fenster aufrufen ++++
function open_musik(WindowURL)
	{
        var attribute="resizable=no,menubar=no,toolbar=no,location=no,status=yes,width=390,height=120,,top=0,top="+((screen.height-560)/3)+",left="+((screen.width-330)/2);
        popup=window.open('popup/musik.htm','fenstermusik',attribute);
	}



// ++++ Logo einfliegen ++++

function move_logo()
{
   init1()
   init2()
   init3()
   init4()
}


   var breite = screen.width/2+150;
   var hoehe = screen.height/2+150;

function init1(){
   if (document.all)
      document.all.logo1.style.posTop = -hoehe
   //Animation starten
   animate1()
}
function animate1(){
   if (document.all.logo1.style.posTop>0)
      document.all.logo1.style.posTop = 0
   if (document.all.logo1.style.posTop<0){
      document.all.logo1.style.posTop += 50
      setTimeout("animate1()", 50)
   }
}


function init2(){
   if (document.all)
      document.all.logo2.style.posLeft = -breite
      //Animation zeitverzögert starten
      var timer;timer=setTimeout('animate2()', 1000)
	
   
}
function animate2(){
   if (document.all.logo2.style.posLeft>0)
      document.all.logo2.style.posLeft = 0
   if (document.all.logo2.style.posLeft<0){
      document.all.logo2.style.posLeft += 50
      setTimeout("animate2()", 50)
   }
}


function init3(){
   if (document.all)
      document.all.logo3.style.posLeft = -breite
      //Animation zeitverzögert starten
      var timer;timer=setTimeout('animate3()', 500)
}
function animate3(){
   if (document.all.logo3.style.posLeft>0)
      document.all.logo3.style.posLeft = 0
   if (document.all.logo3.style.posLeft<0){
      document.all.logo3.style.posLeft += 50
      setTimeout("animate3()", 50)
   }
}


function init4(){
   if (document.all)
      document.all.logo4.style.posTop = -hoehe
      //Animation zeitverzögert starten
      var timer;timer=setTimeout('animate4()', 800)
}
function animate4(){
   if (document.all.logo4.style.posTop>0)
      document.all.logo4.style.posTop = 0
   if (document.all.logo4.style.posTop<0){
      document.all.logo4.style.posTop += 50
      setTimeout("animate4()", 50)
   }
}




// -->

