
function Window()
{
  /* Set the width */
  var b = new Browser();
  this.width  = b.isIE() ? document.body.offsetWidth  : window.innerWidth;
  this.height = b.isIE() ? document.body.offsetHeight : window.innerHeight;
}
