var SGL_JS_INDICATOR = {'text':'&nbsp;', 'class':'indicator'};

function changeOrder() {
    elementSelectOrder = document.getElementById('selectOrder');
    document.getElementById('orderView').value = elementSelectOrder.options[elementSelectOrder.selectedIndex].value;
}
function changeOrderAsc() {
    elementSelectOrder = document.getElementById('selectOrderAsc');
    document.getElementById('orderDesc').value = elementSelectOrder.options[elementSelectOrder.selectedIndex].value;
}

function changePerPage() {
    elementSelectOrder = document.getElementById('pp');
    document.getElementById('perPage').value = elementSelectOrder.options[elementSelectOrder.selectedIndex].value;
    document.getElementById('page').value = 1;
}

function showHide(elementId) {
    var element = document.getElementById(elementId);
    if (element.style.display == '' || element.style.display == 'block') {
        element.style.display = 'none';
    } else {
        element.style.display = '';
    }
}

function changeMake() {
  make=document.getElementById('makeValue').options[document.getElementById('makeValue').selectedIndex].value;
  jsSubmit('car[make_id]=' + make + '&car[type]=-99-99-', 'http://carfrom.us/car/search/action/modelValue/', 'models', false,{debug:'debug',indicatorId:'indicator'});
}

function changeModelId() {
    document.getElementById('modelVal').value=document.getElementById('model').options[document.getElementById('model').selectedIndex].value;
}

function resetForm() {
document.getElementById('model').selectedIndex=0;
document.getElementById('makeValue').selectedIndex=0;
document.getElementById('modelVal').value=-1;
document.getElementById('year').selectedIndex=0;
document.getElementById('year_to').selectedIndex=0;
document.getElementById('select_fuel').selectedIndex=0;
document.getElementById('price_from').selectedIndex=0;
document.getElementById('price_to').selectedIndex=0;
document.getElementById('odo_from').selectedIndex=0;
document.getElementById('odo_to').selectedIndex=0;
document.getElementById('select_damage_id').selectedIndex=0;
document.getElementById('car_create').selectedIndex=0;
document.getElementById('drive_id').selectedIndex=0;
document.getElementById('style_id').selectedIndex=0;
document.getElementById('color_id').selectedIndex=0;
document.getElementById('transmission').selectedIndex=0;
document.getElementById('engine').selectedIndex=0;
}

function showwindow(url,width,height) {
    window.open(url , 'survey','width='+width+',height='+height+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes'); 
    return false;
}