function bild_gross_oeffnen(bild){

win2=window.open("","win2","width=10,height=10, resizable=yes, scrollbars=yes");
if (win2){
win2.focus();
win2.document.open();
win2.document.write("<head><title>"+bild+"</title>");
win2.document.write("<link rel='stylesheet' type='text/css' href='../css/standard.css'></head>");
win2.document.write("<body >");
win2.document.write("<center>");
win2.document.write("<table cellpadding='0' cellspacing='0' align='center' >");
win2.document.write("       <tr>");
win2.document.write("<td width='24' height='24' background="+ '"' + 
"../images/rahmen/bg/bg_leiste01_eck_ob_li.jpg"+ '"' + "> </td>");
win2.document.write("<td height='24' background="+ '"' + 
"../images/rahmen/bg/bg_leiste01_ob.jpg"+ 
'"' + "> </td>");
win2.document.write("<td width='24' height='24' background="+ '"' + 
"../images/rahmen/bg/bg_leiste01_eck_ob_re.jpg"+ '"' + "> </td>");
win2.document.write("       </tr>");
win2.document.write("       <tr>");
win2.document.write("<td width='24' background="+ '"' + "../images/rahmen/bg/bg_leiste01_li.jpg"+ 
'"' 
+ "> </td>");
win2.document.write("         <td>");

// Beginn Bild
win2.document.write("<img src="+ '"' +bild+ '"' + " name='bildgross'  align='middle' border='0' alt="+ 
'"' +bild+ '"' + ">");
// Ende Bild

win2.document.write("         </td>");
win2.document.write("<td width='24' background="+ '"' + "../images/rahmen/bg/bg_leiste01_li.jpg"+ 
'"' 
+ "> </td>");
win2.document.write("       </tr>");
win2.document.write("       <tr>");
win2.document.write("<td width='24' height='24' background="+ '"' + 
"../images/rahmen/bg/bg_leiste01_eck_un_li.jpg"+ '"' + "> </td>");
win2.document.write("<td width='24' background="+ '"' + "../images/rahmen/bg/bg_leiste01_ob.jpg"+ 
'"' + "> </td>");
win2.document.write("<td width='24' height='24' background="+ '"' + 
"../images/rahmen/bg/bg_leiste01_eck_un_re.jpg"+ '"' + "> </td>");
win2.document.write("       </tr>");
win2.document.write("</table>");

win2.document.write("<br>");
win2.document.write("<p align='center' valign='middle'>");
win2.document.write("<font size=5 color='#ff0000'>");
win2.document.write("<a href='javascript:parent.window.print()'>Drucken</a>");
win2.document.write("&nbsp;&nbsp;&nbsp;");
win2.document.write("<a href='javascript:parent.window.close()'>Schließen</a>");
win2.document.write("</font>");
win2.document.write("</p>");
win2.document.write("</center>");
win2.document.write("</body>");
win2.document.close();
win2.resizeTo(screen.availWidth,screen.availHeight);
//win2.resizeTo(bild.width,bild.height);
win2.moveTo(0,0);
}
else
alert("Failed in spawning a new window!")
}



