//(c)2001-2008 by Peter Bieling, www.media-palette.de
var fenster;
function neufenster(bildurl,weit,hoch,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>", bildtitel ,"</title></head>");
   //fenster.document.writeln("<body marginwidth=\"0\" leftmargin=\"0\" marginheight=\"0\" topmargin=\"0\">");
   fenster.document.writeln("<body style='margin:0;padding:0'>");
   fenster.document.writeln("<img src=\"",bildurl,"\">");
   fenster.document.writeln("</body></html>");
   fenster.document.close();
   return false;
}

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