﻿
function Content(iId, iStyles)
{
    var This = this;

    // Implements
    Implements(This, Control, iId, iStyles);

    // Methods
    This.Show = function()
    { This.SetStyle('show'); }

    This.Hide = function()
    { This.SetStyle(null); }
}
