//(c)2001 by Peter Bieling
// If you want to use this script ask info@media-palette.de.
// This is no freeware!
function neufenster(bildurl,weit,hoch,bildtitel) {
   var url= pfad+bildurl;
   var titel=bildtitel;
   if (merker==true) {
      if (fenster.closed == false)
          fenster.close();
   merker=false;
   }
   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.focus();
   merker=true;
}
function schliessen(){
   if (merker==true && fenster.closed == false) {
      fenster.close();
   }
}
