﻿function ChangeCategory(object) {
    if (object.selectedIndex==5)
    {
        $get('DivTxt').style.display='none';
        $get('DivDDl').style.display='inline';

    }
    else
    {
        $get('DivDDl').style.display='none';
        $get('DivTxt').style.display='inline';

    } 
}

function ProductDetail(ProductId) {
    if (typeof(btnShowProductDetailId) !== "undefined") {
        $get('ProductId').value = ProductId;
        $get(btnShowProductDetailId).click();
    } else
        window.location.replace('ProductCatalog.aspx?ProductId=' + ProductId);
}
