function vote(chansonId)
{
	$('.vote').disabled = true;
	
	$.post("/quebec/inc/form/votequebec.php", { id: chansonId },
		function(data) 
		{
			if(data == 0) {
				$('#msg_ok').show();
				$('#votes6a6').hide();
			} else if (data != 0) {
				$('#votes6a6').hide();
				var arErr = data.split('|');
				for (i in arErr) {
					$('#' + arErr[i] + '').show();
				}				
			}
			///
		},"html"
	);

}
