	function openWindow(url, w, h){
		var options = "width=" + w + ",height=" + h + ",";
			options += "resizable=no,scrollbars=no,status=no,";
			options += "menubar=no,toolbar=no,location=no,directories=no";
		var newWin = window.open(url, 'newWin', options);
			newWin.focus();
	}

	function openScrollWindow(url, w, h){
		var options = "width=" + w + ",height=" + h + ",";
			options += "resizable=no,scrollbars=YES,status=no,";
			options += "menubar=no,toolbar=no,location=no,directories=no";
		var newWin = window.open(url, 'newWin', options);
			newWin.focus();
	}

	var button = new Array(7);
	button[0] = new Image();
	button[0].src="./img/noflash/neues.gif";
	button[1] = new Image();
	button[1].src="./img/noflash/kloss.gif";
	button[2] = new Image();
	button[2].src="./img/noflash/repertoire.gif";
	button[3] = new Image();
	button[3].src="./img/noflash/ensemble.gif";
	button[4] = new Image();
	button[4].src="./img/noflash/spielplan.gif";
	button[5] = new Image();
	button[5].src="./img/noflash/presse.gif";
	button[6] = new Image();
	button[6].src="./img/noflash/gaestebuch.gif";
	button[7] = new Image();
	button[7].src="./img/noflash/sponsor.gif";
	button[8] = new Image();
	button[8].src="./img/noflash/karten.gif";

	var schrift = new Array(7);
	schrift[0]=new Image();
	schrift[0].src="./img/noflash/schriften/neues.gif";
	schrift[1]=new Image();
	schrift[1].src="./img/noflash/schriften/kloss.gif";
	schrift[2]=new Image();
	schrift[2].src="./img/noflash/schriften/repertoire.gif";
	schrift[3]=new Image();
	schrift[3].src="./img/noflash/schriften/ensemble.gif";
	schrift[4]=new Image();
	schrift[4].src="./img/noflash/schriften/spielplan.gif";
	schrift[5]=new Image();
	schrift[5].src="./img/noflash/schriften/presse.gif";
	schrift[6]=new Image();
	schrift[6].src="./img/noflash/schriften/gaestebuch.gif";
	schrift[7]=new Image();
	schrift[7].src="./img/noflash/schriften/sponsor.gif";
	schrift[8]=new Image();
	schrift[8].src="./img/noflash/schriften/karten.gif";

	var bover  = new Image();
	bover.src="./img/noflash/mouseover.gif";

	var bactivebutton=bover[0];
	var activeschrift=schrift[0];
	var bindex=0;
	var bo=-1;

	function buttonclick(buttonnummer){
			this.document.images.text.src=schrift[buttonnummer].src;
			activeschrift=schrift[buttonnummer];
	}

	function buttonover(buttonr){
			this.document.images[buttonr+5].src = bover.src;
			this.document.images.text.src=schrift[buttonr].src;
	}

	function buttonout(buttonr){
			this.document.images[buttonr+5].src = button[buttonr].src;
			this.document.images.text.src=activeschrift.src;
	}

