DScript.DScovery.Search.implement
({
    ResultsTemplateContainer : new Class
    ({
        initialize: function()
        {
            var context = 
            {
                'id':''
            }
            
            this.context = context;
        },
        
        doCallBack : function(event)
        {
            WebForm_DoCallback(this.context.id,event.toString(),onSearchTemplateContainerCommand,this,null,true);
        },
    
        toString : function()
        {
          return Json.toString(this.context);
        }
    })
});