
var voted = new Array();

function enquiry_vote(id, enq, mag) {
	if (typeof(voted[enq]) != 'undefined') {
		if (typeof(err_cantVote) != 'undefined')
			alert(err_cantVote);
	}
	else {
	  var cid = id;
		jQuery.ajax({
			type: "GET",
			url: '/enquiries/'+ id +'/vote/' + enq + '/' + mag,
			dataType: "json",
			success: function(res) {
				if (res.ok == "true") {
					voted[res.eid] = true;

      		// zvys hodnotu hlasu na strance
      		hodnota_celkem_hlasu = jQuery('#hlasy_celkem_'+res.id).html();
      		jQuery('#hlasy_celkem_'+res.id).html( parseInt(hodnota_celkem_hlasu) + 1 );

					if (typeof(msg_okVote) != 'undefined')
						alert(msg_okVote);
				}
				else {
					if (typeof(err_cantVote) != 'undefined')
						alert(err_cantVote);
				}
			}
		});
	}
}


