Currently, I am troubleshooting an issue with Internet Explorer where it seems to be ignoring the parameters of the function window.open() when opening an intranet website. Strangely enough, this function works perfectly fine when opening a site in the internet zone. I am puzzled as to why these specific options do not work in the intranet zone: "scrollbars=no, menubar=no, resizable=no, toolbar=no, location=no, status=no"
window.open('page.aspx?width=' + width + '&height=' + height, '', 'width=' + width + ', height=' + height + ', scrollbars=no, menubar=no, resizable=no, toolbar=no, location=no, status=no, fullscreen=no, top=' + top + ', left=' + left);