// 投票行追加
function add_opinion_point (url)
{
  jQuery.ajax({
     type: "POST",
     url: url,
     success: function(msg){
       alert( msg );
     }
   });


}
