﻿


function Size(width, height)
{
	this.Width = width == null ? 0 : parseInt(width);
	this.Height = height == null ? 0 : parseInt(height);
}
