

var vote = function(ref,note,id_res) {
	var btnsize = 'small';
	if (id_res == 'portrait_fiche_box_btns') {
		btnsize = 'big';
	}
	jQuery.get('vote.php',{'ref':ref,'vote':note,'size':btnsize},	function(data,textStatus){
		success = data.split('||')[0];
		if (success == '1') {
			//$('#portrait_'+ref+'_vote_res').html(data.split('||')[1]);
			$('#'+id_res).html(data.split('||')[1]);
		}
		else {
			alert(data.split('||')[1]);
			
		}
		//alert(data);
	}
	);
}


var embedApercu = function(id) {
	$('#protrait_embed_ap').toggle();
}

var captchaChange = function(imgNode) {
	captchaChange.count = ++captchaChange.count || 1;
	var mydate = new Date();
	imgNode.src = 'captcha.php?new='+mydate.getTime();
	
	if (captchaChange.count % 5 == 0) {
		alert('Nice game ^^');
	}
}

