<!--
function Start(URL, WIDTH, HEIGHT) {
windowprops = "scrollbars=yes,left=20,top=20,width=" + (WIDTH+40) + ",height=" + (HEIGHT+90);
text = "<html><head><title></title></head><body bgcolor='white'";
text += "><center><h5>Zum Schließen bitte ins Bild klicken</h5><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();
}
//-->
