//(c)2001-2003 by Peter Bieling, www.media-palette.de
var fenster;
function neufenster(bildurl,weit,hoch,bildtitel) {
   var url= bildurl;
   var titel=bildtitel;
   if (fenster) {
          fenster.close();
   }
   var paramstring='left=10,top=10,resizable=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,width=' + weit +',height=' + hoch;
   fenster=window.open("","",paramstring);
   fenster.document.writeln("<html><head><title>", titel ,"</title></head>");
   fenster.document.writeln("<body marginwidth=\"0\" leftmargin=\"0\" marginheight=\"0\" topmargin=\"0\">");
   fenster.document.writeln("<img src=\"",url,"\">");
   fenster.document.writeln("</body></html>");
   fenster.document.close();
}

function schliessen(){
   if (fenster) {
      fenster.close();
   }
}
