function bopen(bildname,b,h){
	
	b+=16;
	h+=32;
	posx=Math.round((screen.width-b)/2);
	posy=Math.round((screen.height-h)/2);
	var eigenschaften="";
	var bildstring="";
	var sstring="";
	var bildfenster="";
	

	eigenschaften="toolbar=no,status=no,menubar=no,resizable=no,height="+h+",width="+b+",screenX="+posx+",screenY="+posy+"";
	bildstring="<IMG SRC="+bildname+">";
	sstring="<br><a href='javascript:window.self.close()'><font face='Arial,Helvetica' size='2' color='#ccc'>Fenster schlie&szlig;en</font></a>";

	bildfenster=window.open('','metalkids',eigenschaften);
	bildfenster.document.open();
	bildfenster.document.write('<html><head><title>metal-kids</title></head><body>');
	bildfenster.document.write(bildstring);
	bildfenster.document.write(sstring);
	bildfenster.document.write('</body></html>');
	bildfenster.document.close();
	bildfenster.moveTo(posx,posy);
	bildfenster.focus();

}


