
function OpenWokno(breite,hoehe,file,name,preis,text)
{
   var leftpos=screen.availWidth/2-breite/2;
   var toppos=screen.availHeight/2-hoehe/2-10;
   Okno=window.open('','','width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos+',resizable=no,scrollbars=no');
   Okno.document.writeln("<html><head>");
   Okno.document.writeln("<title>&nbsp;"+name+"&nbsp;</title>");
   Okno.document.writeln("<link rel=stylesheet type=text/css href=picturestyle.css>");
   Okno.document.writeln("</head>");
   Okno.document.writeln("<body onClick='window.self.close()'>");
   Okno.document.writeln("<img src="+file+" border=0 title=' Schliessen '>");
   Okno.document.writeln("<span class='preis' style='float: right'>"+preis+"&nbsp;&euro;&nbsp;</span>");
   Okno.document.writeln("<span class='name' style='float: left'>&nbsp;"+name+"</span>");
   Okno.document.writeln("</body></html>");
}


