function ZertifikateZeigen(GrafikURL, Titel, Breite, Hoehe)
{
    Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0";

    Grafikfenster = window.open("", Titel, Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
    Grafikfenster.focus();
    Grafikfenster.document.open();

    with(Grafikfenster)
    {
		  document.write("<html><head>");
		  document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=ISO-8859-1\">");
		  document.write("<title>gm-elektronik - \""+ Titel +"\"</title>");
		  document.write("<link href=\"css/style.css\" rel=\"stylesheet\">");
		  document.write("</head>");
		  document.write("<body leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">");
		  document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"15\" width=\"532\">");
  		  document.write("<tbody><tr>");
		  document.write("<td class=\"galerie\" align=\"center\">gm-elektronik Gorny + Scholz GmbH</td>");
		  document.write("<td class=\"galerie\" width=\"75\" align=\"center\"><a href=\"\" onClick=\"window.print();\">Drucken</a></td>");
		  document.write("<td class=\"galerie\" width=\"75\" align=\"center\">Als pdf Speichern</td>");
		  document.write("<td class=\"galerie\" width=\"75\" align=\"center\"><a href=\"\" onClick=\"self.close();\">Fenster schließen</a></td>");
		  document.write("</tr>");
		  document.write("</tbody></table>");
		  document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"532\" height=\"480\">");
		  document.write("<tbody>");
		  document.write("<tr>");
		  document.write("<td align=\"center\" background=\"images/background/bg_galerie2.gif\"><img  width=\"532\" height=\"480\" src=\""+ GrafikURL +"\"></td>");
		  document.write("</tr>");
		  document.write("</tbody></table>");
		  document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"15\" width=\"532\">");
		  document.write("<tbody><tr>");
		  document.write("<td width=\"75\" class=\"galerie\" align=\"center\"></td>");
		  document.write("<td class=\"galerie\" align=\"center\">gm-elektronik Gorny + Scholz GmbH</td>");
		  document.write("<td width=\"75\" class=\"galerie\" align=\"center\"><a href=\"\" onClick=\"self.close();\">Fenster schließen</a></td>");
		  document.write("</tr>");
		  document.write("</tbody></table>");
		  document.write("</body></html>");
		
    }
	Grafikfenster.document.close();
    return;
}

