I've found all kinds of refs to what I'm doing but I can't seem to make it work. This works in an html page:
NewWindow=window.open('DrYo.htm','newWin','width=300,height=350,left=0,top=0,toolbar=No,menubar=no,directories=no,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
window.close()
NewWindow.focus();
void(0);
However when I use with getURL IE returns error "IE cannot download... Unspecified Error"
getURL("NewWindow=window.open('DrYo.htm','newWin','width=300,height=350,left=0,top=0,toolbar=No,menubar=no,directories=no,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');");
I've tried everything I can think of... any help would be appreciated
NewWindow=window.open('DrYo.htm','newWin','width=300,height=350,left=0,top=0,toolbar=No,menubar=no,directories=no,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
window.close()
NewWindow.focus();
void(0);
However when I use with getURL IE returns error "IE cannot download... Unspecified Error"
getURL("NewWindow=window.open('DrYo.htm','newWin','width=300,height=350,left=0,top=0,toolbar=No,menubar=no,directories=no,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');");
I've tried everything I can think of... any help would be appreciated