function bbzprint() {
  var ns4up = (document.layers) ? 1 : 0;
  var ie4up = (document.all) ? 1 : 0;
  var xsize = 440;
  var ysize = 500;
  var breite=xsize;
  var hoehe=ysize;
  var xpos=50+(xsize-breite)/2;
  var ypos=50+(ysize-hoehe)/2;

  var p = "scrollbars=no,status=yes,toolbar=no,location=no,directories=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos;
  newwin = window.open("about:blank", "BBZ_Fulda", p);
  newwin.focus(self);
  newwin.document.write("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n");
  newwin.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n");
  newwin.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"de\" lang=\"de\">\n");
  newwin.document.write("<head>\n");
  newwin.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n");
  newwin.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/fileadmin/css/bbz.css\" />\n");
  newwin.document.write("<style notation='text/css'>\n");
  newwin.document.write("* { font-family:Helvetica,Helv,Arial,sans; font-size:11px; }\n");
  newwin.document.write("</style>\n");
  newwin.document.write("<title>EDUCATIONCENTER BBZ GmbH</title>\n");
  newwin.document.write("</head><body style='margin:20px;width:400px;'>\n");
  newwin.document.write("&copy; EDUCATIONCENTER BBZ GmbH ");
  newwin.document.write("<a style='margin-left:100px;color:red;font-weight:bold' href='javascript:window.print();'>Erneut drucken...</a> ");
  newwin.document.write("<hr />");
  newwin.document.write(document.getElementById("innerercontent").innerHTML);
  newwin.document.write("</body></html>\n");
  newwin.document.close();
  newwin.focus(self);
  newwin.print();
  return (false);
  }
