How to do if condition depending on screen Rs

Hey folks,
i m crearting a pop with some parameters like locationbar,statusbar=no and its height and width 1280*800. but originally i have given its hight to be 699 to pixel a viewpoint. however i need help with someone who has a less resolution. can i put some if condition. checking if the resolution isn’t at 1280 * 800 and if so than the popup should have scroll. is there anymore smater way to handle this? as of now if someone has a less Res. everything get clipped off

well i m totally new to JS. for now what i m using is

function Rezise(){
window.open("home.php","_blank",toolbar=no,location=no,scrollbar=no,status=no,reziseable=no,fullscreen=yes,width=1280, height=800");

having that said. those are bits and pieces i gathered from net to come up with what i want. adding to this your code. how will it be? i know i m being a nerd. but would appreciate your help

yes i saw that, but given my scanerio i.e if a person is using less Resoultion than 1280 * 800. the scrollbar=yes whereas as of current they are no (leaving a person with with less resoultion not see the page beyond the viewpoint)

You can use screen.width and screen.height to get the actual screen resolution but that doesn’t take into account any fixed toolbars displayed on the screen.

You can’t turn off the locationbar or status bar in modern browsers so the actual space you will have available in the window may be less than you expect.

The following gives you an idea of how to do it.


var useScrollbar = (screen.height < 800) ? 'yes' : 'no';
window.open(..., ..., 'scrollbar='+useScrollbar,...');