FYI its shows in IE 6.0 (sp 2) also. status=0 is what works for me, interesting....
I notice you an I use single and double quotes differently....
Anyhow this is the code which works for me:
function call:
onClick="openBareWin('6x9Pop.asp','pop',715,440,20 0,200);"
function:
var newBareWin
function openBareWin(pageURL, pageName, width, height, top, left)
{
newBareWin = window.open(pageURL, pageName,"width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=0, resizable=0,toolbar=0,location=0,status=0,menubar= 0");
newBareWin.focus()
}
Wind is your friend
Matt
|