var send_flg = false;
function checkform()
{
	var status = 0;
	var d = document.message_form;
	
	if (send_flg == true) {
		//alert('送信中です。しばらくお待ちください。');
		return false;
	} else {
		send_flg = true;
		// Now the Ajax CAPTCHA validation
		action_update();
	}
	
	return false;
}
function action_update(){
	
	result = $.ajax( {
		type: 'post',
		cache: false,
		url: '/2011/_action/add',
		dataType : "json",
		data: {
			'code'		   : 'utf8',
			'mode'		   : 'add',
			'message'  	   : $('#actmsg2').val()
		},
		success: function( data ){
			if (data['result'] == '1') {
				$("#close_button a").click();
				//$("input:radio[@name=category]").attr("checked", false);
				var d = document.message_form;
				$('#actmsg2').val("");
				$("#top_message").load("/2011/_action/message/");
				alert("\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01");
				if (navigator.userAgent.indexOf("MSIE 6") != -1) {
					location.reload();
				} else {
					setTimeout(function(){ $('#top_count_img').attr("src", '/2011/_action/count.png?d=' + Math.random()) }, 1500);
				}
			} else {
				alert(data['error']);
			}
			send_flg = false;
		},
		error: function(){
			send_flg = false;
		}
	});
	return;
}

