/*
Copyright (c) 2008, TINAMI Inc. All rights reserved.
*/
/* Help Feedback */
function doFeedback(action, score) {
	$.post(
			'/help/feedback/add', 
			'action=' + encodeURIComponent(action) + '&score=' + encodeURIComponent(score),
			function() {
				$('#helpfeedback').html('<p class="caption">回答ありがとうございました。</p>');        	
			}
    );
    return false;
}

