function showFac(t,fac){
    $("#Facs").children().removeClass("o_current");
    $(t).addClass("o_current");
    $(".p_other_pr").hide();
    $("#LoadImg").show();
    FacDetail(fac);
}

function FacDetail(fac){
    $.post(
        "/allproducts/AjaxFac/",
        {code:fac},
        function(flag){
            $("#FacDiv").html(flag);
            $("#LoadImg").hide();
            $(".p_other_pr").show();
        },
        "html"
    );
}