ULVI: Eine Frage zu einem PopUp script

Hallo nochmals,

ich hab folgenden JavaScript Code. Damit möchte ich auf meiner Seite die Bilder in einem Pop Up Fenster darstellen.

Wie schaffe ich das, das in dem PopUp Fenster auch ein vordefinierter Text erscheint, z.B. ein Copyright?! Hier der Code

<script language="JavaScript">
function newWindow(file, w, h)
{
var wi = w + 20;
var hi = h + 78;
Window = window.open(file,"fenster","width=" + wi + ", height=" + hi + ", screenX= 0, screenY= 0, resizable= no, menubar= no, locationbar= no");
Window.focus();
}
</script>

  1. Schau dir doch mal dieses Script an damit kannst du einen Text an ein anderes Fenster übergeben.

    <html>
    <head>

    <script language="javascript1.2">
    function go(txt) {
     neu = open("file","fenster","width=200,height=200");
     txt = "<html><head></head><body>" + txt + "</body></html>";
     with (neu.document) {
      open();
      write(txt);
      close();
     }
    }
    </script>

    </head><body>

    <a href="#" onclick="go('Copyright by Java-Fun'); return false;">link</a>

    </body></html>