
function ListGlossarySimple(caller,viewer,body,callback)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;}
ListGlossarySimple.prototype.doActive=function(body){this.run(undefined,body);}
ListGlossarySimple.prototype.run=function(undefined,body)
{if(undefined!=body)
this.body=body;this.caller.getGlossaryList(this);}
ListGlossarySimple.prototype.handleRequestData=function(value){this.doValue(value);}
ListGlossarySimple.prototype.doValue=function(value)
{this.body.innerHTML='';this.body.appendChild(this.viewer.generate(value,this));}