function win(scr, loc, men, res, sta, abx, aby, breit, hoch, fenstername, pfad)
	{
	var gesamt;
	gesamt="scrollbars="+scr+",location="+loc+",menubar="+men+",resizable="+res+",status="+sta+",width="+breit+",height="+hoch+",left="+abx+",top="+aby;
	offen=window.open(pfad,fenstername,gesamt);
	offen.focus();
	} 