function getCookie2(name){
    name += "=";
    theCookie = document.cookie + ";";
    start = theCookie.indexOf(name);
    if(start != -1){
        end = theCookie.indexOf(";",start);
        return unescape(theCookie.substring(start + name.length,end));
    }
    return false;
}

function isLogin_detail(){
    var p = location.pathname;
    rObj = new RegExp("\/biglobe\/");

    user_mst_id = getCookie2('user_mst_id');

    document.getElementById("mmb").style.display='none';

    if(user_mst_id.length){
    }else{
        document.getElementById("mmb").style.display='block';
    }
}
