

function bild(picture,text,breite,hoehe) { 
	picture=(""+picture);
	msg=window.open("","viewer",'width='+breite+',height='+hoehe+',resizeable=no,left=10,top=10');
	msg.document.write('<html><title>'+text+'</title>');
	msg.document.write('<body bgcolor="#ab0000" topmargin="0" leftmargin="0">');
	msg.document.write('<table align="center" cellspacing="0" cellpadding="0"><tr><td>');
	msg.document.write('<img src="'+picture+'" border="0" alt="">');
	msg.document.write('</td></tr></table>');  
	msg.document.write('</body></html>');
}
