function LadeBild(Nummer,Breite,Hoehe)
	{
	Scroller = 0;
	if (screen.height < Hoehe)
		{
		Hoehe = screen.height-50;
		Scroller = 1;
		}
	Datei = 'bild_' + eval(Nummer) +'.html';
	x = Breite;
	y = Hoehe;

	window.setTimeout("Laden(Datei,x,y)",500);
	}				
	
	function Laden(Datei,Breite,Hoehe)
		{
		open(Datei,"Bild","toolbar=0,location=0,status=0,menubar=0,scrollbars="+Scroller+",resizable=0,width=" + Breite + ",height=" + Hoehe);
		}

function LadeScrollBild(Nummer,Breite,Hoehe)
	{
	Scroller = 1;
	Datei = 'bild_' + eval(Nummer) +'.html';
	x = Breite;
	y = Hoehe;

	window.setTimeout("Laden(Datei,x,y)",500);
	}				
	
	function Laden(Datei,Breite,Hoehe)
		{
		open(Datei,"Bild","toolbar=0,location=0,status=0,menubar=0,scrollbars="+Scroller+",resizable=0,width=" + Breite + ",height=" + Hoehe);
		}	 