function antwort(max,id) {
	

		
	//alle anderen Fragen ausblenden
	for (var i = 1; i <= max; ++i) {
		if(i!=id)
			document.getElementById('antwort'+i).style.display = "none";
		else {
			
			//ausgewählte Frage ein-/ausblenden
			if(document.getElementById('antwort'+i).style.display == "block")
				document.getElementById('antwort'+i).style.display = "none";
			else
				document.getElementById('antwort'+i).style.display = "block";		
		}
	}

}	

function _copyright() {
	DatumAktuell=new Date();
	JahrAktuell=DatumAktuell.getFullYear();
	document.write("&copy; "+ JahrAktuell);
}

function pop(url,breite,hoehe)    {
    var pop = null;
    pop =  window.open(url,'popwin','width='+breite+',height='+hoehe+',resizable=no,status=no,scrollbars=no,menubar=no,toolbar=no,directories=no')
    if (pop) {
       pop.moveTo(screen.width/2-breite/2,screen.height/2-hoehe/2);
       pop.window.focus();
    }
}

