function fenster(breit,hoch,pfad)
	{
	var gesamt;
	gesamt="scrollbars=yes,location=no,menubar=no,resizable=no,status=no,width="+breit+",height="+hoch+",left=10,top=10";
	offen=window.open(pfad,'large_image',gesamt);
	offen.focus();
	}

function fenster_alt(pfad,fil)
	{
	var gesamt;
	var fenstername = "popup";
	if (fil=="edi")
		{
		breit=500;
		scr="yes";
		}
	else
		{
		breit=900;
		scr="no";
		}
	hoch=600;
	gesamt="scrollbars="+scr+",location=no,menubar=no,resizable=no,status=no,width="+breit+",height="+hoch+",left=1,top=1";
	offen=window.open(pfad,fenstername,gesamt);
	offen.focus();
	}