/* Fenster ohne SSL */
function popup(url,namen,breite,hoehe) {
		if (url != "") {
			url="http://"+self.location.host+url;
		 }
		window.open(url,namen,"width="+breite+",height="+hoehe+",scrollbars=yes,status=yes,resizable=yes");
	}    
	
function popupbhw(uri,namen,breite,hoehe) {
	popup(uri,namen,breite,hoehe);
}
	
/* Fenster mit SSL */
function popup_s(url,namen,breite,hoehe) {
		if (url != "") {
			url="https://"+self.location.host+url;
		 }
		window.open(url,namen,"width="+breite+",height="+hoehe+",scrollbars=yes,status=yes,resizable=yes");
	}
/* Fenster mit freier URL */
function popup_url(url,namen,breite,hoehe) {
		window.open(url,namen,"width="+breite+",height="+hoehe+",scrollbars=yes,status=yes,resizable=yes");
	}
