I have been looking at this code for a couple of days and need some a second person to clarify were I am going wrong. I have a popup window which is perfect, however, I am unable to disable the resizable paramater. I have tried the usual suspects but to no avail. This is somewhat similar to Digital Pencil post 0n the 04/22, but there was no resolution. Any ideas?? Here is the code:
<SCRIPT TYPE="text/javascript">
<!--
function NewWindow(mypage, myname, w, h, scroll) {
var winL = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops =
'height='+h+' ,width='+w+' ,top='+wint+' ,left='+winL+' ,scrollbars='+scroll+' ,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->
</SCRIPT>
<a href="trinidadpopup.htm" a onfocus="this.blur()" onClick="NewWindow(this.href,'name','250','300' ,'no');return false;">Trinidad</a>
<SCRIPT TYPE="text/javascript">
<!--
function NewWindow(mypage, myname, w, h, scroll) {
var winL = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops =
'height='+h+' ,width='+w+' ,top='+wint+' ,left='+winL+' ,scrollbars='+scroll+' ,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->
</SCRIPT>
<a href="trinidadpopup.htm" a onfocus="this.blur()" onClick="NewWindow(this.href,'name','250','300' ,'no');return false;">Trinidad</a>