function openPop(url);
{
window.open(url,'','height=400,width=780'); //fixed
//window.open(url,'','height='+screen.height+',width='+screen.width); as per user's screen
}
Need to be careful not to confuse "full size" window with "maximized" window..... not the same. You can easily control the window size as mentioned above, but can not MAXIMIZE the screen using JavaScript. The effect of not being maximized would be that vertical scrolling may not function (or even be available) if the window isn't maximized, and the user may not realize that there is more info "below the fold".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.