    // マイページトップへ遷移
    function goMypage(loginid){
        document.goMypage.target_login_id.value = loginid;
        document.goMypage.submit();
    }

    // 検索実行
    function goSearchsubmit(community_id,bbssearch_bbsword){
        if(document.community.iKey.value == bbssearch_bbsword ){
            document.community.iKey.value = "";
        }
        document.community.action = '/community/bbssearch/search/' + community_id;
        return true;
    }

    // 検索実行
    function goSearch(community_id,bbssearch_bbsword){
        if(document.community.iKey.value == bbssearch_bbsword ){
            document.community.iKey.value = "";
        }
        document.community.action = '/community/bbssearch/search/' + community_id;
        document.community.submit();
    }

    function onFocus(formName,elementName){
        var target = document.forms[formName].elements[elementName];
        if(target.value == target.defaultValue){
            target.value = "";
        }
    }

    function onBlur(formName,elementName){
        var target = document.forms[formName].elements[elementName];
        if(target.value == target.defaultValue || target.value == ""){
            target.value = target.defaultValue;
        }
    }
    // 外部リンク計測(urchinTracker)
    function outUrlUrchinTracker( outMansionHp,mansionCode ){
        var nowURL = encodeURIComponent(document.URL);
        var outURL = encodeURIComponent(outMansionHp);

        var target = '/out/community/'+ nowURL + '/' + outURL + '/' + mansionCode;

        urchinTracker('\'' + target + '\'');

    }
