<!--
function Start(URL, WIDTH, HEIGHT) {
windowprops = "scrollbars=yes,left=20,top=20,width=" + (WIDTH+30) + ",height=" + (HEIGHT+20);
text = "<html><head><title>Bildansicht</title></head><body bgcolor='black'";
text += "><center><img onclick=\"window.close();\" src='" + URL + "'>";
text += "</center></body></html>";
preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//-->