vjuenf,
window.onresize = function() {
var wwidth=(window.innerWidth)?window.innerWidth:
((document.all)?document.body.offsetWidth:null),
page = document.getElementById("page");
if (wwidth == 1000) { page.style.width = 1000; }
else { if (wwidth == 2000) { page.style.width = 2000; }
else { ... } }
}