New Window/Pop Up Minimizes
We have several pages that use a javascript function to open a new web presentation created from MS PowerPoint. The new window has all toolbars and title bars removed. This works fine on most computers but a few in our company are having trouble with it. When the click the button to launch the presentation, the window immediately minimizes.
Here is the function we are using:
function chgpage(){
popupWin = window.open("Confid.htm",null, "fullscreen=yes,status=no,toolbar=no,menubar=n o");
}
And the button code is
<input type = button value="Click here to start" onclick="chgpage();MM_goToURL('parent','http://home/');return document.MM_returnValue">
Thanks for your help.
|