		function popUp(url,Breite,Hoehe) 
		{
		 win = window.open(url,"Illustration","left=200,top=150,width=" + Breite + ",height=" + Hoehe + ",toolbar=no,location=no,status=yes,menubar=no,scrollbars=auto,resizable=no,dependent=yes,hotkeys=yes")
		 win.focus();
		}
		
		function popUpScroll(url,Breite,Hoehe) 
		{
		 win = window.open(url,"Illustration","left=200,top=150,width=" + Breite + ",height=" + Hoehe + ",toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,dependent=yes,hotkeys=yes")
		 win.focus();
		}
