function vote(id,type){
	$.ajax({
		type: "GET",
		url: "index.php?game/vote/"+id+"/"+type,
		dataType:'json',
		success: function(data){
			alert('谢谢您的参与,查看最新结果请刷新页面!');
		}
	});
}

function free(id,type){
	$.ajax({
		type: "GET",
		url: "index.php?game/free/"+id+"/"+type,
		dataType:'json',
		success: function(data){
			alert('谢谢您的参与,查看最新结果请刷新页面!');
		}
	});
}