function LinkCount() {
    new Ajax.Request(
        '/search/member.htm',
        {
            method: 'post',
            parameters: 'output=count',
            onSuccess: function (req) {
                $('linkCount').innerHTML = req.responseText + '件';
            }
        }
    )
}