rileypetty
Programmer
On a web site that I maintain for a customer there is a data entry page that has the following Javascript code for launching a small help page/window.
<script type="text/javascript">
function epicHELP() {window.open("eventPIC/epicHELP.asp","epichelp","status=0,scrollbars=yes,top=20,left=30,width=380,height=340");}
</script>
The code works fine everywhere but at the customer’s business. At home when I click on the button the small 380x340 page popup window opens correctly (IE8 & Mozilla). But at the customer’s business the popup opens as a full screen page. The proper information gets to the customer but I wanted the small popup to open so the customer could still see the larger data entry window in the background. They are using IE & Mozilla, various versions. Is there something they have turned on in their browsers making this happen? Thanks for any information you may be able to give me.
<script type="text/javascript">
function epicHELP() {window.open("eventPIC/epicHELP.asp","epichelp","status=0,scrollbars=yes,top=20,left=30,width=380,height=340");}
</script>
The code works fine everywhere but at the customer’s business. At home when I click on the button the small 380x340 page popup window opens correctly (IE8 & Mozilla). But at the customer’s business the popup opens as a full screen page. The proper information gets to the customer but I wanted the small popup to open so the customer could still see the larger data entry window in the background. They are using IE & Mozilla, various versions. Is there something they have turned on in their browsers making this happen? Thanks for any information you may be able to give me.