Hi,
Ich bekomme das einfach nicht hin.
lager das ganze mal in eine Funktion aus. Bei mir sieht das z.B. so aus:
function newBrowser(URL,width,height)
{
window.open(URL,"","dependent=no,directories=no,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width="+ width +",height="+ height);
}
der Funktionsaufruf sieht folgendermaßen aus:
<a href="seite.html" onClick="if (!window.newBrowser) return true; newBrowser('seite.html','160','250'); return false;" target="_blank">seite</a>
Gruß,
small-step