kosm
Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору Полностью привожу код: Индексный файл, код в нем, по ссылке открываю первый попап: Цитата: <SCRIPT LANGUAGE=\"JavaScript\"> function open_win(file,w,h) { if (w < window.screen.Width) { imagewidth = w; } else { imagewidth = (window.screen.Width-100); } if (h < window.screen.Height) { imageheight = h+6; } else { imageheight = (window.screen.Height-100); } var winPosX = window.screen.Width/2-imagewidth/2; var winPosY = window.screen.Height/2-imageheight/2; window.open(file, 'detail', 'width='+imagewidth+', height='+imageheight+', top='+winPosX+', left='+winPosY+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no'); } </SCRIPT> <a target="_blank" href="/pop1.html" onclick="open_win(this.href,100,100); return false;"></a> | Следующий код в открывшевмся попапе, по ссылке пытаюсь открыть еще один поп: Цитата: <script type="text/javascript"> foo = false; function openUrl(myURL,myTitle,width,height) { var left = parseInt((screen.width-width)/2); var top = parseInt((screen.height-height-60)/2); if(!(foo) || foo.closed) foo = window.open(myURL,'window',"width="+width+",height ="+height+",left="+left+",screenY="+left+",top="+t op+",screenX="+top+",status=no,toolbar=no,menubar= no,location=no,scrollbars=no"); setTimeout('foo.document.title = \\''+myTitle+'\\';',3000); foo.focus(); } </script> <A target="_blank" href="/pop2.html" onclick="openUrl(this.href,'wnd',469,650); return false;"> | Имена окон разные (выделил в коде). В чем еще может быть засада? | Всего записей: 225 | Зарегистр. 20-02-2002 | Отправлено: 10:00 21-03-2008 | Исправлено: kosm, 10:02 21-03-2008 |
|