          function Foto(img){ 
            foto1= new Image(); 
            foto1.src=(img); 
            Berechne(img); 
          } 
          function Berechne(img){ 
            if((foto1.width!=0)&&(foto1.height!=0)){ 
              viewFoto(img); 
            } 
            else{ 
              mach="Berechne('"+img+"')"; 
              intervallo=setTimeout(mach,20); 
            } 
          } 
          function viewFoto(img){ 
            largh=foto1.width-5; 
			neufensterwidth=foto1.width+25;
			
            altez=foto1.height-5; 
			neufensterheight=foto1.height+85;
			
            stringa='width='+neufensterwidth+',height='+neufensterheight+',resizable=yes,scrollbars=yes,left=10,top=10,ScreenX=10,ScreenY=10'; 
			var setfocus ="<script>window.focus();</script>";
			
            neufenster=window.open("","r");
			neufenster.blur();
			neufenster.close();
			neufenster=window.open("","r",stringa);	
			neufenster.focus();
			with (neufenster) 
		   {
		      document.writeln('<HTML><HEAD><TITLE>Steingaden im Pfaffenwinkel.net - im Voralpenland.net</TITLE></HEAD><BODY BGCOLOR="#FFFAC8" background="fotos/back_raeder.jpg" TEXT="#000078" LINK="#000078" VLINK="#800080" ALINK="#FF0000" topmargin="0" leftmargin="0" marginheight="0">');
			  document.writeln(setfocus);
		      document.writeln('<DIV ALIGN=CENTER>');
		      document.writeln('<TABLE BORDER=0  CELLSPACING=0 CELLPADDING=0 VALIGN="top" topmargin="0" marginheight="0"><TR><TD>');
		      document.writeln('<font size="5" face="Arial" style="font-weight:bold">Impressionen aus Steingaden </font><IMG SRC="leer.gif" BORDER=0><a href=javascript:window.close()><font size="2" face="Arial" style="text-decoration:none"><br><br><center>Fenster schlie&szlig;en</center><br></face></a><br></td></tr>');
			  document.writeln('</TD></TR></TABLE></DIV>');
			  document.writeln('<DIV ALIGN=CENTER>');
			  document.writeln('<TABLE BORDER=0  CELLSPACING=0 CELLPADDING=0 VALIGN="top" topmargin="0" marginheight="0">');
			  document.writeln('<TR><TD align="center" background='+img+' norepeat><a href="javascript:window.close()"><IMG SRC="leer.gif" WIDTH='+largh+' HEIGHT='+altez+' BORDER=0 ALT=Impressionen&nbsp;aus&nbsp;Steingaden></a>');
      		  document.writeln('</TD></TR></TABLE></DIV></BODY></HEAD>');
		   }		   
          }  