function neuesFenster(link,bild,breit,hoch) {
	var optionen="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+breit+",height="+hoch;
	window.open(link +"?"+ bild, "fenster",optionen);
}
function neuesFenster2(link,breit,hoch) {
	var optionen="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+breit+",height="+hoch;
	window.open(link,"_blank",optionen);
}

function anzeige() {
	document.write("<img src='../images/"+bild+" border='0'>");
}

function bildwechsel(bild,name) {
	document.images[bild].src=eval(name + ".src");
}

function einAusklappen(position){
		m=document.getElementById(position);
		anzeigen=m.style.display;
		if (anzeigen=="block") anzeigen="none";
		else if (anzeigen=="" || anzeigen=="none") anzeigen="block";
		m.style.display=anzeigen;
}

function ausgabe(ort,ausgabetext) {
	document.forms[0].elements[ort].value=ausgabetext;
}
