    
function BrandForm() {
    document.getElementById("brand_id");
        selectedIndex = 0;
        onclick = brandPage();
}

function brandPage() {
    var brandLoc = document.getElementById ("brand_id");
    var preBrandID = 'brand_results.php?brand_id=';
    var postBrandID = '&go=Sort+By+Brand&Submitted=TRUE';
    var newBrandPage = preBrandID+(brandLoc.options [brandLoc.selectedIndex].value)+postBrandID;
    
    if (newBrandPage !="") {
        window.location = newBrandPage;
    }
}





function CategoryForm() {
    document.getElementById("cid")
        selectedIndex = 0;
        onclick = categoryPage();
}

function categoryPage() {
    var categoryLoc = document.getElementById ("cid");
    var preCategoryID = 'category_results.php?cat_id=';
    var postCategoryID = '&go=Sort+By+Category&Submitted=TRUE';
    var newCategoryPage = preCategoryID+(categoryLoc.options [categoryLoc.selectedIndex].value)+postCategoryID;
    
    if (newCategoryPage !="") {
        window.location = newCategoryPage;
    }
}



function PowerForm() {
    document.getElementById("pow")
        selectedIndex = 0;
        onchange = powerPage();
}

function powerPage() {
    var powerLoc = document.getElementById ("pow");
    var prePowerID = 'power_results.php?pow=';
    var postPowerID = '&go=Sort+By+Power&Submitted=TRUE';
    var newPowerPage = prePowerID+(powerLoc.options [powerLoc.selectedIndex].value)+postPowerID;
    
    if (newPowerPage !="") {
        window.location = newPowerPage;
    }
}








