function neuesFenster(bildname,breite,hoehe){	

hoehe = hoehe + 20;
var fheight = hoehe;
var fwidth = breite;
var scrollleiste = 'no';

fscroll = 0;
fwidth = breite;
fheight = screen.availHeight;

if (fheight < hoehe) 
{
     fheight = hoehe;
     fscroll = 1;
}

var f = window.open('', 'bild', 'width='+fwidth+',height='+fheight+',left=1,top=1,toolbar=0,status=0, location=0, directories=0, menubar=0, resizable=1, scrollbars='+fscroll+'');	
if(f.focus)		
f.focus();			
var d = f.document;	

d.open();	
d.write('<HTML><HEAD><TITLE>Bildansicht</TITLE>');
d.write('<style type="text/css"><!-- a {font-family:Arial;font-size:10pt;text-decoration:none;color:#000000;}//--></style>');
d.write('</HEAD><BODY bgcolor="#ffffff" marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>');	
d.write('<CENTER><A href="javascript: window.close();">');
d.write('<IMG src="http://www.sugambria.com/images/'+bildname+'" width="'+breite+'" border=0 height="'+hoehe+'">');	
d.write('</A></CENTER>');
d.write('</BODY></HTML>');	
d.close();}

