/**********************************************************
* SFX (tm) Searchable A-Z title searching javascript file.
* Copyright Ex Libris, Inc.
* Version: $Id: category.js,v 1.3 2007/11/01 15:44:58 dz_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.display_single_object.value = document.getElementById('display_single_object_save').value;
    document.az_user_form.submit();
}


