var correct = true
function searchCheck() 
{
correct = true
if (document.searchbox.search_query.value.length == 0) {correct = false; alert("Please Enter a Search Value.");return correct;}
return correct;
}

function dropdown_manager_small() 
{
var type = document.searchform.search_type.options[document.searchform.search_type.selectedIndex].value
var type_txt = "?search_type="
var vval2 = document.searchform.val2.options[document.searchform.val2.selectedIndex].value
var vval2_txt = "&val2="
var search_val = document.searchform.search_query.options[document.searchform.search_query.selectedIndex].value
var search_val_txt = "&search_query="
var reset_txt = "&reset=yes"
var anc = "#sb";
location =  type_txt + type + vval2_txt + vval2 + search_val_txt + search_val + reset_txt + anc
}
function dropdown_manager_process() 
{
var type = document.searchform.search_type.options[document.searchform.search_type.selectedIndex].value
var type_txt = "?search_type="
var vval2 = document.searchform.val2.options[document.searchform.val2.selectedIndex].value
var vval2_txt = "&val2="
var search_val = document.searchform.search_query.options[document.searchform.search_query.selectedIndex].value
var search_val_txt = "&search_query="
var anc = "#sb";
location =  "search.php" + type_txt + type + vval2_txt + vval2 + search_val_txt + search_val + anc
}
function dropdown_manager_process_prod() 
{
var type = document.searchform.search_type.options[document.searchform.search_type.selectedIndex].value
var type_txt = "?search_type="
var vval2 = document.searchform.val2.options[document.searchform.val2.selectedIndex].value
var vval2_txt = "&val2="
var search_val = document.searchform.search_query.options[document.searchform.search_query.selectedIndex].value
var search_val_txt = "&search_query="
var anc = "#sb";
location =  "../search.php" + type_txt + type + vval2_txt + vval2 + search_val_txt + search_val + anc
}
//drop down function for the support top dropdown form item
function dropdown_manager_support_top() 
{
var sup1 = document.support.support_opt1.options[document.support.support_opt1.selectedIndex].value
var sup1_txt = "?support_opt1="
var reset_txt = "&reset=yes"
location =  sup1_txt + sup1 + reset_txt
}

function dropdown_manager_support() 
{
var sup1 = document.support.support_opt1.options[document.support.support_opt1.selectedIndex].value
var sup1_txt = "?support_opt1="
var sup2 = document.support.support_opt2.options[document.support.support_opt2.selectedIndex].value
var sup2_txt = "&support_opt2="
location =  sup1_txt + sup1 + sup2_txt + sup2
}

function dropdown_manager_process_downlevel() 
{
var type = document.searchform.search_type.options[document.searchform.search_type.selectedIndex].value
var type_txt = "?search_type="
var vval2 = document.searchform.val2.options[document.searchform.val2.selectedIndex].value
var vval2_txt = "&val2="
var search_val = document.searchform.search_query.options[document.searchform.search_query.selectedIndex].value
var search_val_txt = "&search_query="
var anc = "#sb";
location =  "../search.php" + type_txt + type + vval2_txt + vval2 + search_val_txt + search_val + anc
}