function InitialSubmit(initial){
    document.getElementById('brand_1search').innerHTML = '<input type="hidden" name="brand_1search" value="'+initial+'">';
    document.getElementById('search_word').value = '';
    document.BlandSearch.submit();
}
function FormSubmit(){
    document.getElementById('brand_1search').innerHTML = '';
    document.BlandSearch.submit();
}

function SortData()
{
    index = document.getElementById('sort_list').selectedIndex;
    selectData = document.getElementById('sort_list').options[index].value
    
    document.getElementById('sort').value = selectData;
    document.BlandSearch.submit();
}

function newSearch()
{
    document.BlandSearch.submit();
}

$(document).ready(function(){
    if (document.getElementById('sort')) {
        index = document.getElementById('sort_list').selectedIndex;
        selectData = document.getElementById('sort_list').options[index].value
        document.getElementById('sort').value = selectData;
    }
});

