I have a 940 pixel wide table that currently contains all of the content to my website.
Using Javascript I'd like to test to see of the width of the browser is greater than 1240 and if so display my existing 940 pixel wide table in a and display an advertisement in an adjacent that's 300 pixels wide.
If the browser window is less that 1240 then I would just display my existing 940 pixel wide table.
Is there an way to test the width and set a flag then use javascript to test that flag and include or not include my structure?

document.documentElement.clientWidth... – MaxArt Jun 23 '12 at 11:20