Подскажите как сделать один скрипт открывания нового окна для нескольких линков? Вот так пробую, но не работает Код (Text): <SCRIPT type="text/javascript"> function UP () { window.open(this.href, 'new', 'width=390, height=370,'); } </script> <a href="./file1.php" onclick = "Up ();">1</a> <a href="./file2.php" onclick = "Up ();">2</a> <a href="./file3.php" onclick = "Up ();">3</a> <a href="./file4.php" onclick = "Up ();">4</a> Вот так еще пробовал, тоже нехочет работать: Код (Text): function UP (a) { var puti = a.href; window.open(puti, 'new', 'width=390, height=370'); } </script> <a href="./file1.php" onclick = "Up (this);">1</a> <a href="./file2.php" onclick = "Up (this);">2</a> <a href="./file3.php" onclick = "Up (this);">3</a> <a href="./file4.php" onclick = "Up (this);">4</a>
HTML: <script> function up(a) { var puti = a.href; var win = window.open(puti, '_blank', 'width=390, height=370'); } </script> <a href="./file1.php" onclick = "up(this); return false;">1</a> <a href="./file2.php" onclick = "JavaScript: Up(this); return false;">2</a> <a href="./file3.php" onclick = "JavaScript: Up(this); return false;">3</a> <a href="./file4.php" onclick = "JavaScript: Up(this); return false;">4</a>