function Go(x) {
 if(x == "nothing") {
 	document.multiauswahl.reset();
    return;
 }
 else if(x == "end")
   top.location.href = parent.frames[1].location;
 else {
   window.location.href = x;

 }
}

function belegung (weitergabe) {
	var breite = screen.width/2-225;
	var hoehe = screen.height/2-300;
	if (window.offen && !offen.closed){
		offen.focus();
	}
	else {
		offen = window.open("kalender.php?objekt="+weitergabe+"", "Belegungskalender", "left="+breite+",top="+hoehe+",width=450,height=620" );
	}
}

function popup (weitergabe,art) {
	var breite = screen.width/2-400;
	var hoehe = screen.height/2-300;
	if (window.offen && !offen.closed){
		offen.focus();
	}
	else {
		offen = window.open("fotos.php?id="+weitergabe+"&art="+art, "Foto", "left="+breite+",top="+hoehe+",width=800,height=600" );
	}
}

function toggle(control,map) {
	var elem = document.getElementById(control);
	var elem_zusatz = document.getElementById(control+'_zusatz');
	if(elem.style.display == "none") {
		elem.style.display = "block";
		elem_zusatz.style.display = "none";
		document.cookie = control+'=block; path=/';
		if(map) { myOnload(); }
	}
	else {
		elem.style.display = "none";
		elem_zusatz.style.display = "block";
		document.cookie = control+'=none; path=/';
	}
}