var newwindow = 'Neu2';
function popitup(url, titel, breite, hoehe) {
  if (window[newwindow] && !window[newwindow].closed)
      window[newwindow].close();
  
  var param = 'width='+breite+',height='+hoehe+',location=no,toolbar=no,status=no,menubar=no,scrollbars=0';
      
  window[newwindow] = window.open('', '', param);
  
  with (window[newwindow].document) {
    open();
    write('<html>\n<head>\n<title>'+titel+'<\/title>\n<\/head>\n');
    write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>\n');
    write('  <a href="javascript:self.close()"><img src="'+url+'" width='+breite+' height='+hoehe+' border=0><\/a>\n');
    write('<\/body>\n<\/html>\n');
    close();
  }
  
}

