// $Id$

var Stage = {
   getWidth : function() {
      return Try.these(
                function() { return document.documentElement.clientWidth; },
                function() { return self.innerWidth; },
                function() { return document.body.clientWidth;});
   },
   getHeight : function() {
      return Try.these(
                function() { return document.documentElement.clientHeight; },
                function() { return self.innerHeight; },
                function() { return document.body.clientHeight;});
   }
};
