Witam
Czy ktoś z Was wie jak się nazywa lub jak zrobić coś takiego, że strona otwiera link w nowym małym okienku i są relacje między tym oknem a stroną otwierająca.
Czytałem kiedyś gdzieś, że jest coś takiego możliwe, ale nie mogę tego znaleźć.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" language="JavaScript"> var okno; function noweOkno() { menuOkno(1); okno = window.open('http://google.pl','Okno strony', 'width=800, height=650, left=500'); } function zamknijOkno() { menuOkno(2); okno.close(); } function idzOkno(adres) { okno.location.href=adres; okno.focus(); } function menuOkno(typ) { if (typ==1) { document.getElementById('otwieracz').style.display='none'; document.getElementById('nawigator').style.display='block'; var interwal = setInterval(function(){if (okno.closed) menuOkno(2);}, 0500); }; if (typ==2) { document.getElementById('otwieracz').style.display='block'; document.getElementById('nawigator').style.display='none'; clearInterval(interwal); }; } </script> </head> <body onunload="zamknijOkno();"> <table border="1" width="100%" height="100%"> </table> <script> menuOkno(2); </script> <input type="text" id="aktualnyadres" /> </body> </html>