	
function OpenSimpleWindow (Adresse, Titel) {
<!--  onclick="OpenWindow(this.href, 'Titel'); return false"-->
			win = window.open(Adresse,Titel,
				"width=1200,height=800	,toolbar=1,menubar=0,status=0,resizable=1,scrollbars=1,location=0");
			win.top = (screen.height - win.height) / 2
			win.left = (screen.width - win.width) / 2
			win.focus();
			return false;
}
