<!--
  var add;
  var widthString;
  var heightString;

  var prefix;
  var suffix;
  var object;
	
  var x;
  var y;
  var b;
  var h;

  var winx;
  var winy;
  var winxold;
  var winyold;

  //onResize="init();";
 
  function getDimension() {
	  winx   = eval(widthString);
	  winy   = eval(heightString);
  }

  function init() {
		//IE4
		if(document.all && !document.getElementById) {
		  //alert("IE5");
		  prefix = "document.all.logo";
		  suffix = ".style";
		  widthString = "document.body.clientWidth";
		  heightString = "document.body.clientHeight";
		}
		//IE5
		else if(document.all && document.getElementById) {
		  //alert("IE5");
		  prefix = "document.all.logo";
		  suffix = ".style";
		  widthString = "document.body.clientWidth";
		  heightString = "document.body.clientHeight";
		}
		//NS4
		else if(document.layers) {
		  //alert("NS4");
		  prefix = "document.logo";
		  suffix = "";
		  widthString = "window.innerWidth";
		  heightString = "window.innerHeight";
		}
		//NS6
		else if(document.getElementById && !document.all) {
		  //alert("NS6");
		  prefix = "document.getElementById('logo')";
		  suffix = ".style";
		  widthString = "window.innerWidth";
		  heightString = "window.innerHeight";
		} else {
			return;
		}

		getDimension();
		b		= winx;
		winxold	= winx;
		h		= winy;
		winyold	= winy;

		if(winy < 300) {
			//alert("winy: "+winy+" "+h);
			//alert(prefix+".src='fs_div1.gif'");
			//eval(prefix+".src='fs_div1.gif'");
			//eval(prefix+".document.images[0].src='fs_div1.gif'");
			x = b-212;
			y = h-240;
		} else {
			//alert("winy: "+winy+" "+h);
			//eval(prefix+".document.images[0].src='fs_div2.gif'");
			//eval(prefix+".src='fs_div2.gif'");
//			x = b-265;
//			y = h-300;
			x = b-350;
			y = h-380;
		}
		
		//alert("x: "+x+" y: "+y);
		eval(prefix+suffix+".left="+ x);
		eval(prefix+suffix+".top=" + y);
		
		//setTimeout("reloaden()",1000);
  }
  
  function reloaden() {
		getDimension();
		
		//eval(prefix+"logo.document.images[0].src='fs_div2.gif'");
		if(winy < 300) {
			eval(prefix+"logo.document.images[0].src='fs_div1.gif'");
			x = b-212;
			y = h-240;
		} else {
			eval(prefix+"logo.document.images[0].src='fs_div2.gif'");
			x = b-265;
			y = h-300;
		}
		
		if (winx!=winxold || winy!=winyold) {
			alert("Ich reloade gleich");
			document.location.reload();
		} else {
			setTimeout("reloaden()",100);
		}
	}
	
// -->

