
// Öffnet ein neues Fenster ohne Bestandteile
function neues_fenster(url, name, breite, hoehe){
	Fenster = window.open(url, name, "width=" + breite + ", height=" + hoehe + ", left=200, top=200, location=no, menubar=no, resizable=no, scrollbars=no, status=no");
	Fenster.focus();
}

