
function ShortInterestWorklistSimple(caller,viewer,body,callback,pageSize)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;this.pageSize=pageSize;}
ShortInterestWorklistSimple.prototype=new WorklistSimple();ShortInterestWorklistSimple.prototype.doPositionDate=function(positionDate,body)
{this.run(new ShortInterestFilter(positionDate,undefined,undefined,undefined,this.pageSize),body);}
ShortInterestWorklistSimple.prototype.doSecurity=function(securityId,body)
{this.run(new ShortInterestFilter(undefined,securityId,undefined,undefined,this.pageSize),body);}
ShortInterestWorklistSimple.prototype.doSymbol=function(symbol,body)
{this.run(new ShortInterestFilter(undefined,undefined,symbol,undefined,this.pageSize),body);}
ShortInterestWorklistSimple.prototype.makeCall=function(criteria,dataHandler)
{this.caller.getShortInterestWorklist(criteria,dataHandler);}
ShortInterestWorklistSimple.prototype.gotoQuote=function(ev)
{this.myCallback.callback.gotoQuote(this.myRecord.symbol);return false;}