// clear form values
<!--
function clearDefault(el) {
    if (el.defaultValue==el.value) el.value = ""
}

function openDealerMap(url) {
    var map = window.open(url,'dealermap','scrollbars=yes,resizable=yes,menubar=yes,width=675,height=525');
    map.focus();
}

function redirectSelect(field) { 
    var index = field.selectedIndex;
    var url = field.options[index].value;
    window.location = url;
    return false;
}

// -->

function DoSubmission() {
document.Search.submit();
document.Find.submit();
}