function popup(datei,breite,hoehe){
	var param = 'width='+breite+', height='+hoehe+', location=no, scrollbars=yes, menubars=no, toolbars=no, resizable=yes, status=no';
	var dmb_fenster = window.open(datei,'dmb_fenster',param);
}

// Frameseite nachladen
// http://aktuell.de.selfhtml.org/artikel/javascript/dyn-frames/index.htm
function checkFrameset() {
	if(!parent.frameDMBNavi){
		host = location.host;
		page = location.pathname;
		param = location.search;
		if(param.indexOf("view=popup")<0){
			if(host=='localhost'){
				location.href = "http://localhost/_websites/dmb-bau/server/index.php?page=" + page + param;
			}
			else{
				location.href = "http://www.dmb-bau.de/index.php?page=" + page + param;
			}
		}
	}
}

