| ' + this.options[i].text + ' | ';
}
buildString = buildString + items.join("") + '';
if (this.view != null) {this.view.innerHTML = buildString;}
}
ListBoxItem = function(text,value)
{
this.text = text;
this.value = value;
}
ListBox.prototype.clearItems = function()
{
this.options = new Array();
}
ListBox.prototype.add = function()
{
var i,arglen;
arglen=arguments.length;
for(i=0;i