// Popup
function neuesFenster(url,hoch,breit) {
	ok = window.open(url, "Fenster-zwei","hoch,breit,scrollbar=no");
	if (ok) return false;
  else return true;
	Fenster2.focus();
}

// Bildwechsel
var time = 3000;
var bild = new Array();
bild[0] = "img/about01.jpg"; 
bild[1] = "img/about02.jpg";
bild[10] = "img/about03.jpg";
bild[3] = "img/about04.jpg"; 
bild[8] = "img/about05.jpg";
bild[9] = "img/about06.jpg";
bild[6] = "img/about07.jpg"; 
bild[7] = "img/about08.jpg"; 
bild[4] = "img/about09.jpg"; 
bild[5] = "img/about10.jpg"; 
bild[2] = "img/about11.jpg"; 


var anzahl = "0";
function bildwechseln() {
	if ( document.wechselbild )
	{
		document.wechselbild.src = bild[anzahl];
		anzahl++;
		if (anzahl == bild.length) {
			anzahl = 0;
		}
		setTimeout("bildwechseln()",time);
	}
}
