function FRectangle(aTop, aBottom) 
{
    this.top = aTop;
    this.bottom = aBottom;
}
FRectangle.prototype.top;
FRectangle.prototype.bottom;