function showC(fac){
    $("#listvendor").hide();
    $("#vendorup").hide();
    $("#examup").hide();
    $("#facT").html(fac);
    $("#catT").html(fac);
    $("#catDiv").empty();
    $.post("/ajax_fc.php",{
        factory:fac
    },
    function(flag){
        $.each(flag,function(fkey){
            var str="";
            var flagArr=flag[fkey];
            str="<li><a href='/"+flagArr.facn+"/"+flagArr.catn+".html'>"+flagArr.category+"</a></li>";
            $("#catDiv").append(str);
        });
    }
    ,"json")
}
//function facClose(){
//    $("#listvendor").hide();
//}
//$(document.body).click(function(){
//        facClose();
//});