function SubscriptionDetails(cont)
{
    //constructor
    this.Container=cont;

    this.SubscribersTable=this.Container.down('tr.subscribers-list').down('td').down('table');

    this.SubList=new SubscribersList(this.SubscribersTable);
}

function SubscribersList(table)
{
    //this is the list of subscribers on the subscription details page
    this.Container=table;
    this.tBody=table.down('tbody');
}


SubscribersList.prototype.DataBind=function(subscribers)
{
    //clear tbody
   this.tBody.innerHTML='';
}