



































































































NS4 = document.layers;
if (NS4) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}

function reDo() {
	if (innerWidth != origWidth || innerHeight != origHeight)
	location.reload();
}

if (NS4) onresize = reDo;

var x1_richtung=1;    
var y1_richtung=1;    
var x1=200;   
var y1=92;   
var w=0;     
var h=0;     
function move_it() {
	if (document.layers) {                   
		document.flieger.left=x1;
		document.flieger.top= y1;}
	else {                                   
		document.all.flieger.style.left=x1;
		document.all.flieger.style.top= y1;}
	if ((x1<0) || (x1>750)) {
		if (x1_richtung==1) x1_richtung=-1;
		else x1_richtung=1;}
	if ((y1<0) || (y1>100)) {
		if (y1_richtung==1) y1_richtung=-1;
		else y1_richtung=1;}
	x1=x1+(x1_richtung*1); y1=y1+(y1_richtung*1); setTimeout("move_it()",25);};
function init() {
	if(navigator.appName=="Netscape") {
		w=innerWidth;                   
		h=innerHeight;}
	else {
		w=document.body.offsetWidth;    
		h=document.body.offsetHeight;}
move_it();}

var x2_wohin=1;    
var y2_wohin=1;    
var x2=0;   
var y2=92;   
var w=0;     
var h=0;     
function bewege() {
	if (document.layers) {                   
		document.flieger2.left=x2;
		document.flieger2.top= y2;}
	else {                                   
		document.all.flieger2.style.left=x2;
		document.all.flieger2.style.top= y2;}
	if ((x2<0) || (x2>750)) {
		if (x2_wohin==1) x2_wohin=-1;
		else x2_wohin=1;}
	if ((y2<0) || (y2>350)) {
		if (y2_wohin==1) y2_wohin=-1;
		else y2_wohin=1;}
	x2=x2+(x2_wohin*1); y2=y2+(y2_wohin*1); setTimeout("bewege()",25);};

function lade() {
	if(navigator.appName=="Netscape") {
		w=innerWidth;                   
		h=innerHeight;}
	else {
		w=document.body.offsetWidth;    
		h=document.body.offsetHeight;}
bewege();}
function schwebe()
 {{init();}
  {lade();}}