hilfe! wie kann ich popup position zuweisen?

  • <script>
    <!--

    function GrafikAnzeigen(GrafikURL, Breite, Hoehe)
    {
    Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

    Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
    Grafikfenster.focus();
    Grafikfenster.document.open();
    with(Grafikfenster)
    {
    document.write("<html><head>");
    document.write("<title>Grafikanzeige</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>");
    }

    }

    //-->
    </script>
    </head>
    <body>

    <table border="0" cellpadding="2" cellspacing="5">
    <tr>
    <td>[url='javascript:GrafikAnzeigen('garten1.jpg', '576', '384');'][/url]</td>
    <td>[url='javascript:GrafikAnzeigen('garten2.jpg', '576', '384');'][/url]</td>
    <td>[url='javascript:GrafikAnzeigen('bilder/bauernstube1.jpg', '640', '480');'][/url]</td>
    </tr>
    </table>

    </body>
    </html>

    Code