
function Size( width, height )
{

    var sizeX = width;
    var sizeY = height;
    
    this.Height = function()
                  {
                     return sizeY;
                  }
    
    this.Width = function()
                  {
                     return sizeX;
                  }

}
