防止浏览器或系统拦截软件拦截的脚本怎么写

最近做了一个系统,客户要求是登陆之后全屏展示操作,我在JSP中判断之后这样写的
<script language="javascript"> window.open('EIPMain.jsp?locale=<%=strLanguage%>','','resizable=yes,scrollbars=yes,left=0,top=0,width=' + (screen.availWidth-10) + ',height=' + (screen.availHeight-30));
window.opener = null;
window.close();
</script>

但这样的话,有的用户装了XP或者win2003或有广告拦截软件就会把打开的窗口拦截掉,如何不让系统或软件拦截掉呢?请各位script高手帮忙看看能不能解决

代码


<script language="javascript"> window.open('EIPMain.jsp?locale=<%=strLanguage%>','','resizable=yes,scrollbars=yes,left=0,top=0,width=' + (screen.availWidth-10) + ',height=' + (screen.availHeight-30));
window.opener = null;
window.close();
</script>