<!--
   function Bild(adresse,breite,hoehe)
    {
    if (document.all) hoehe+=29;

    var counter;
    var linti=window.open("","bild","width="+breite+", height="+hoehe+", screenX=0,screenY=0,left=0,top=0,resizable=yes,scrollbars,dependent=yes");
	linti.resizeTo(breite,hoehe);
	var anfang=adresse.lastIndexOf("/")+1;
	var ende=adresse.lastIndexOf("_");
	if ((adresse.indexOf("_")!=-1)&&(!isNaN(parseInt(adresse.charAt(ende+1))))) ende;
	else	{ 
		if ((adresse.indexOf("-")!=-1)&&(!isNaN(parseInt(adresse.charAt(adresse.lastIndexOf("-")+1))))) { ende=adresse.lastIndexOf("-");}
		else { ende=adresse.length-4; }
		}
	var titel=adresse.substring(anfang,ende);
	titel=titel.charAt(0).toUpperCase()+ titel.substring(1,titel.length);
	titel=titel+" (Vergr&ouml;&szlig;erte Ansicht)";
	linti.document.open("text/html","replace");
	linti.document.write("<html><head><title>"+titel+"</title></head>");
	linti.document.write("<body background="+adresse+" scroll=\"auto\" style=\"background-repeat: no-repeat\">");
	linti.document.write("</body></html>");
	linti.focus();
    }
-->