/**********************************************************
* 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.perform.value = 'searchCategories';
    document.az_user_form.type.value = 'browseCategory';
    document.az_user_form.subcategory.value = '';
    document.az_user_form.submit();
}

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

