/**********************************
* Class Display                   *
*                                 *
* Properties: availableWidth      *
*               Input: -          *
*               Output: (Integer) *
*             availableHeight     *
*               Input: -          *
*               Output: (Integer) *
*             currentWidth        *
*               Input: -          *
*               Output: (Integer) *
*             currentHeight       *
*               Input: -          *
*               Output: (Integer) *
*             desktopWidth        *
*               Input: -          *
*               Output: (Integer) *
*             desktopHeight       *
*               Input: -          *
*               Output: (Integer) *
*             desktopBits         *
*               Input: -          *
*               Output: (Integer) *
**********************************/

function Display()
{
  this.availableWidth = screen.availWidth;
  this.availableHeight = screen.availHeight;
  this.currentWidth = document.body.clientWidth;
  this.currentHeight = document.body.clientHeight;
  this.desktopWidth = screen.width;
  this.desktopHeight = screen.height;
  this.desktopBits = screen.colorDepth;
}

