
function initCategoryBox(){

    $j('#categoriesDiv').catSelect({
        urlSub: '/company_categories/get_children.json',
        urlParent: '/company_categories/get_parent.json',
        input: $j('#ProductCompanyCategoriesId'),
        size: 1,
        start: 0,
        type: 'get',
        columns: 3,
        indicatorId: 'categoriesDivajaxIndicator'
      });

    setTimeout("$('categoriesDivajaxIndicator').hide()",1000);
    

    $j('#categoriesDivajaxIndicator').block({
        message: '<img src="/img/loading.gif" />',
        css: {border: '0px',backgroundColor: 'transparent'},
        overlayCss: {opacity: '0.7'}
    });


}


function validateAddCatPromoForm() {
    if($j('#ProductCompanyCategoriesId').val() == '0') {
        alert('Musisz wybrać kategorię końcową.');
        return false;           
    }
    return true;
}

function initCategoryBox2(){

    $j('#categoriesDiv').catSelect({
        urlSub: '/company_categories/get_children.json',
        urlParent: '/company_categories/get_parent.json',
        input: $j('#Category'),
        size: 1,
        start: $j('#Category'),
        type: 'get',
        columns: 3,
        indicatorId: 'categoriesDivajaxIndicator'
      });

    setTimeout("$('categoriesDivajaxIndicator').hide()",1000);
    

    $j('#categoriesDivajaxIndicator').block({
        message: '<img src="/img/loading.gif" />',
        css: {border: '0px',backgroundColor: 'transparent'},
        overlayCss: {opacity: '0.7'}
    });


}
