function windowOpen(url,breite,hoehe,sb,res) {
	var showUrl = url;
	var wndProperties = 'width=' + breite + ',height=' + hoehe + ',scrollbars=' + sb + ',menubar=0,resizable=' + res + ',toolbar=0';
	var wnd = window.open(showUrl, 'fenster', wndProperties);
}
