function addItem() {
if (OboutTextBox1.value() != '') {
ListBox1.options.add(OboutTextBox1.value());
OboutTextBox1.value('');
} else {
alert('Please type the text.');
}
return false;
}
function removeItem() {
var selectedIndex = ListBox1.selectedIndex();
clearSelection();
if (selectedIndex != -1) {
ListBox1.options.remove(selectedIndex);
} else {
alert('Please select an item.');
}
return false;
}
function clearSelection() {
ListBox1.selectedIndex(-1);
ListBox1.value('');
}