if(document.all){
   w = document.body.clientWidth;
   h = document.body.clientHeight;
}

else {
   w = innerWidth;
   h = innerHeight;
}

if (document.getElementById && !document.all) { // NS 6
  w = window.innerWidth;
  h  = window.innerHeight;
}