/**********************************************************
* SFX (tm) Searchable A-Z title searching javascript file.
* Copyright Ex Libris, Inc.
* Version: $Id: category.js,v 1.2 2007/04/18 21:47:08 jl_3 Exp $
***********************************************************/



//---------------------------------------------------------
function browseCategory() {
//---------------------------------------------------------
// Submits the form so it retreives all subcategories
// related to the category indicated by the 'category'
// form variable.
//---------------------------------------------------------
    document.az_user_form.param_category_search_type_value.value = 'browseCategory';
    document.az_user_form.param_subcategory_value.value = '';
    document.az_user_form.submit();
}


//---------------------------------------------------------
function browseSubCategory() {
//---------------------------------------------------------
// Submits the search for so it performs a text search
//---------------------------------------------------------
    document.az_user_form.param_category_search_type_value.value = 'browseSubCategory';
    document.az_user_form.submit();
}

