<!--

function Bildfenster(bildurl)
{
var fenster;


fenster=window.open("","","left=450,top=50,width=420,height=420,menubar=no,toolbar=no,statusbar=0, resizable=yes");
fenster.focus();
fenster.document.open();
with (fenster) {
 document.write('<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html;charset=utf-8" />');

  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  document.write("function click() { window.close(); } ");  
  document.write("document.onmousedown=click ");

  document.write('</scr' + 'ipt>');
  document.write('<title>Bild</title></head>');

  document.write('<' + 'body onblur="window.close();">');
 
  document.write('<div align="center"><table width="400" border="0" cellspacing="0" cellpadding="0" height="400"><tr><td><div align="center">');
  document.write('<img src="'+ bildurl +'" border="0" />');
  document.write('</div></td></tr></table></div>');
  document.write('</body></html>');
  fenster.document.close();
}
}
function ausinfo () {
  Fenster1 = window.open("../../../../leiderausverkauft.html", "Zweitfenster", "width=300,height=300,left=200,top=200");
  Fenster1.focus();
}
//-->
