function oeffneFenster(url,bez,breite,hoehe) {
	options = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1";
	var fenster = window.open(url,bez,options);
}



function formHandler() {
	var URL = document.form.site.options[document.form.site.selectedIndex].value;
	window.location.href = URL;
}

