function LadeSeite(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);
		}	
	