Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script>
function moveIt(action){
if (action == 'add'){
addTo = document.myForm.clients2;
removeFrom = document.myForm.clients1;
}
if (action == 'del'){
addTo = document.myForm.clients1;
removeFrom = document.myForm.clients2;
}
for (var i = removeFrom.options.length - 1; i >= 0; i--) {
if ((removeFrom.options[i] != null) && (removeFrom.options[i].selected == true)) {
addTo.options[addTo.options.length] = new Option (removeFrom[i].text, removeFrom[i].value);
removeFrom.options[i] = null;
}
}
}
function selectAll(list) {
var opt=list.options;
for (var i=0; i<opt.length; i++) opt.selected=true;
}
</script>
<P align=center><SELECT id=clients1 style="WIDTH: 160px; COLOR: black; HEIGHT: 266px" multiple size=5 name=clients1><%=optionStr%></SELECT> </P></TD>
<TD width=250>
<CENTER><INPUT
onclick="moveIt('del')"
onclick="moveIt('add')"