// JavaScript Document
	
	
	function expand(){
var text = "";
var stufe = "<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
if (document.getElementById("z").innerHTML !="- ") {
 
	text += stufe + 
		"<br><a href='#' class='archiv'>2005 - 2008</a>" +
			stufe + 
		"<br><a href='archiv/gegenschnitt.htm' class='archiv'>Gegenschnitt</a><br>";
		
			document.getElementById("z").innerHTML= "- ";
		}
	else {
			document.getElementById("z").innerHTML="+ ";
		}
		document.getElementById("i").innerHTML=text;
	}
	
	function neuesFenster(url) {
	var params = 'dependent=yes, width=450, height=460, scrollbars=yes, location=no, menubar=no, resizable=no, status=no, toolbar=no';
	window.open(url,"Details",params);
	}
	function tickets(url) {
	var params = 'dependent=yes,width=880,height=600,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,toolbar=no';
	window.open(url,"tickets",params);
	}
	function faq(url) {
	var params = 'dependent=yes,width=950,height=600,x=300,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,toolbar=no';
	window.open(url,"faq",params);
	}