
function PopupOeffnen() {
	var objFenster, strKonfig;
	strKonfig = "scrollbars=0" + 
				",statusbar=0" + 
				",toolbar=0" + 
				",titlebar=0" + 
				",location=0" + 
				",status=0" + 
				",resizable=1" + 
				",width=594" + 
				",height=592" + 
				",left=60" + 
				",top=60";
	objFenster = window.open("/popup_rt2009.html", "Info", strKonfig);
	objFenster.focus();
}
