Hallo
wie sieht es mit dem resize-Befehl aus?
Realisieren könnte man das Ganze dann so:
function open_window2(MURL,x,y)
{
var twin=window.open(MURL, "twindow",
"width=320,height=420,scrollbars=yes,resizable=no,toolbar=yes,status=no,directories=no,menubar=no,location=no");
twin.resizeTo(x,y)
if (navigator.appVersion.indexOf('2.')!=0) {
twin.focus();
}
//twin.close();
}
Aufruf (Beispiel):
<A HREF="javascript:open_window2('bild1jpg',100,123)">Bild 1 ansehen</A>
Unterstützt wird resizeTo() ab den Browsern der 4. Generation.
Gruß
Michael