neues_fenster= null;
function zeig(bild0,titel0,breite0,hoehe0)
{ bild=bild0;
  titel=titel0;
  breite=breite0;
  hoehe=hoehe0;
  zu();
  setTimeout("sicht()",1000);
}

function sicht()
{ fenster_hoehe=hoehe+115;
  fenster_breite=breite+40;
  option='left=10,top=10,height='+fenster_hoehe+',width='+fenster_breite;
  neues_fenster=window.open('','',option)
  with (neues_fenster)
  { document.writeln('<html><head><title>'+titel+'</title>');
    document.writeln('<link href="format.css" rel="stylesheet" type="text/css"></head>');
	document.writeln('<body bgcolor="#FFFCF2"><table align="center" border="0"><tr><td>');
	document.writeln('<img src="'+bild+'" width='+breite+'height='+hoehe+' border=0 alt="'+titel+'"></td>');
	document.writeln('</tr></table><p><span class="kleinfett">'+titel+'</span><br><br>');
	document.writeln('<a href="javascript:self.close()">Fenster zu</a></p>');
	document.writeln('</body></html>');
}
} 

function zu()
{if (neues_fenster!=null)
	if (!neues_fenster.closed)
	 neues_fenster.close();
}
  
 function neu(f,b,h)
 {		adr=f + ".htm";
 		gross='left=10,top=10,scrollbars=yes,height='+h+',width='+b;
 //		fenster=window.open(adr,"","width=800,height=650,scrollbars=yes,left=10,top=10");
		fenster=window.open(adr,"",gross);
		fenster.focus();
 }