
function openWind(p){



 //bild = new Image();
 bild = p;

var fenster;

//window.open('', 'Zweitfenster', 'width='+document.getElementById(Bildid).naturalWidth + ',height='+document.getElementById(Bildid).naturalHeight + ',scrollbars=0');

fenster = window.open("#","Milieu","width=300,height=300,directories=no;resizeable=no,status=no,scrollbars=no,toolbars=no,menubar=no");
fenster.document.open();

fenster.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"> <head> <script type=\"text/javascript\">  function resizet(){  var breite = document.getElementById('bild1').width+50 ;var hoehe = document.getElementById('bild1').height+80; self.resizeTo(breite,hoehe); document.moveTo(1,1); } </script> </head> <body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" onload=\"javascript: resizet();\"><table width='100%' height='100%'><tr valign='middle'><td align='center' >&nbsp;<br /><img src='"+bild+"' border='0' name ='bild1' id='bild1' onclick='javascript: self.close();' /></td></tr> </body> </html>");
fenster.document.close();



}

