
function moveStart() {
//copies the list selection to the specified text box
var strtemp;
strtemp = getSelectValue(document.forms["itin"].elements["startpoint"]);
document.forms["itin"].elements["Orig"].value = strtemp;
}

function moveEnd() {
//copies the list selection to the specified text box
var strtemp;
strtemp = getSelectValue(document.forms["itin"].elements["endpoint"]);
document.forms["itin"].elements["Dest"].value = strtemp;
}
function getSelectValue (varSelect)
{
         return varSelect.options[varSelect.selectedIndex].value;
}

function checkForm(form){
        if (form.clearIt.value == "1"){
                form.reset();
                form.clearIt.value = "0";
                return false;
        } else {
                return true;
        }
}

