	function new_win(page, breite, hoehe, scrolling) 
		{	
			screenhoehe = screen.height - 200;
			screenbreite = screen.width - 100;
			if (breite > screenbreite)
			{
				breite = screenbreite;
			}
			if (hoehe > screenhoehe)
			{
				hoehe = screenhoehe;
			}
			var seite = (screen.width - breite) / 2;
			var oben = ((screen.height - hoehe) / 2)-20;
			var optionen = "toolbar=0,location=0,directories=0,status=0,resizable=1,width=" + breite + ",height=" + hoehe + ",left=" + seite + ",top=" + oben + ",scrollbars=" + scrolling;
			fenster = window.open(page,"Name", optionen);
			fenster.focus();
		}
			// © Jan Paepke 2002 (e-mail@janpaepke.de)
			// Die kommerzielle Nutzung bedarf ausdrücklicher Erlaubnis!
