Hallo,
Du hast in Deinem Javascript ja nirgends abgefragt welches Bild erscheinen soll in Deinem popup. Die URL im open() ist leer, und es wird auch nichts in den HTML text des popups geschrieben, daher kommt natuerlich auch nur eine leere Seite.
Versuch's mal in der Richtung:
--------------------snip--------------
function showimage(bild) {
F = window.open("","Popup","width=400,height=300,location=no, menubar=no, resizable=no, scrollbars=yes, status=no, toolbar=no");
F.document.write('<html><head></head><body><img src="' + bild + '"></body><html>');
}
--------------------snip--------------
Gruss, Mel
Danke! Dickes Bussi! Super!!! JUHU!
Klar! Ohne URL geht nix, bloß hab ich's irgendwie nicht geblickt! Many thanks!
Cya
Boris