function Bilderanzeige(GrafikURL, Breite, Hoehe)
{
Fensteroptionen="toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no";

Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
Grafikfenster.focus();
Grafikfenster.document.open();
with(Grafikfenster)
{
document.write("<html><head>");
document.write("<title>Bilderanzeige</title>");
document.write("</head>");
document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schließen auf das Foto klicken\">");
document.write("</body></html>");
document.body.style.cursor = "pointer";
}
}

function TargetBlank(Adresse) {
NeuFenster = window.open(Adresse, "Zweitfenster");
NeuFenster.focus();
}

