
06.07.2009, 17:38
|
|
Постоянный
Регистрация: 02.07.2008
Сообщений: 472
С нами:
9399011
Репутация:
444
|
|
вобщем такая проблемма:
мне надо открыть pop-up , а перед открытием выскакивало окно с предупреждением
если я делаю так то ссылка открывается в одном окне, а не в поп-апе((
<a onclick="return confirm('открыть?');" href="test.php" onclick="NewWindow(this.href,'тест','180','150 ','no','center');return false" onfocus="this.blur()">открыть окно</a>
или так
<a href="test.php" onclick="return confirm('открыть?'); NewWindow(this.href,'тест','180','150','no','c enter')" onfocus="this.blur()">открыть окно</a>
код поп-апа
Код:
<script language="javascript" type="text/javascript">
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
if(win.focus){win.focus();}}
function CloseNewWin(){if(win!=null && win.open)win.close()}
window.onfocus=CloseNewWin;
</script>
помогите пожалуйста!
P.S. с меня плюсы!
Последний раз редактировалось heretic1990; 06.07.2009 в 17:56..
|
|
|