	function popUpMs(src,name,breite,hoehe) {
		eval('window.open("' + src + '","' + name + '","dependent=yes,scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=yes,location=no,status=no,width=' + breite + ',height=' + hoehe + '")');
	}

	function popUpOs(src,name,breite,hoehe) {
		eval('window.open("' + src + '","' + name + '","dependent=yes,scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=no,location=no,status=no,width=' + breite + ',height=' + hoehe + '")');
	}

	function showBinary(url){
		if(url.indexOf('mailto:') == 0){
			this.open(url);
			return;
		}

		//var win = this.open(url, "Popup", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=680,height=640");
		var win = this.open(url, "Popup");
		win.focus();
	}

	function showExternal(url){
		if(url.indexOf('mailto:') == 0){
			this.open(url);
			return;
		}

		//var win = this.open(url, "Popup", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=680,height=640");
		var win = this.open(url, "Popup");
		win.focus();
	}
