// -----------------------------------------------------------------------
// TINAMI Comike Map System Ver 2010/08/04
// (c) 2006-2010 TINAMI. All rights reserved.
// supporter.js: お手伝い登録
// -----------------------------------------------------------------------
function clickSupporter(hash)
{
    var url = '/comike/entry/supporter/' + hash;
    var myAjax = new Ajax.Request( url, {
        method: 'post', onComplete: function(req) {
            // お友達一覧を更新する
            Element.update('supporters', req.responseText);
            // ボタンのテキストを変更
            var text = $('do-circle-support-a').innerHTML;
            if (text.match(/登録する/)) {
                text = 'お手伝い登録を解除する';
            } else {
                text = 'お手伝いとして登録する';
            }
            Element.update('do-circle-support-a', text);

            // コメントの形で埋め込んである人数を取得して表示する
            var matches = req.responseText.match(/<!-- ([0-9]+) -->/);
            var num = 0;
            if (matches) {
                num = matches[1];
            }
            Element.update('supporter_num', num);

            // お手伝いウィンドウを開く
            Element.show('supporter');
        }
    });
}

