I am having s problem using window.open. I am using the code below to open a new window. It works correctly in IE, but when I tried it in Netscape 7, it opens the new page, but does not display the scrollbars, so the user cannot view the entire page. Is there something specific I have to do to get this to work in Netscape?
Thanks.
JavaScript Function:
function OpenPage(strName)
{
switch(strName)
{
case 'sbwrelease':
var strWindow=window.open("other/ReleaseSept22-2004.htm","wndNewsLinksPage","width=450, height=450, toolbar=yes, menubar=yes, status=yes location=yes, directories=yes resizable=yes scrollbars=yes");
break
}
strWindow.focus();
return false;
}
Thanks.
JavaScript Function:
function OpenPage(strName)
{
switch(strName)
{
case 'sbwrelease':
var strWindow=window.open("other/ReleaseSept22-2004.htm","wndNewsLinksPage","width=450, height=450, toolbar=yes, menubar=yes, status=yes location=yes, directories=yes resizable=yes scrollbars=yes");
break
}
strWindow.focus();
return false;
}