<!--
function newwin(dateiname,breite,hoehe)
{
	var offset=40;
	var maxbreite=Math.round(screen.width*0.7);
	var maxhoehe=Math.round(screen.height*0.7);

	if (maxbreite<640)
		{ maxbreite=640; }
	if (maxhoehe<480)
		{ maxhoehe=480; }

	breite=breite+offset;
	hoehe=hoehe+offset;
	if (breite>maxbreite)
		{ breite=maxbreite; }
	if (breite<160)
		{ breite=160; }
	if (hoehe>maxhoehe)
		{ hoehe=maxhoehe; }
	if (window.kleinesFenster) {kleinesFenster.close();}
	kleinesFenster = window.open(dateiname,"bildfenster","height="+hoehe+",width="+breite+",toolbar=no,directories=no,resizable=yes,menubar=yes,scrollbars=yes,locationbar=no, left=100, top=100");
  setTimeout('kleinesFenster.focus()', 300);

}

//-->

