function votar(id, nota, que){
	if(id==undefined || nota==undefined || que==undefined){
		alert("Error con los parámetros");
		return;
	}

	$.ajax({
		type: "GET",
		url: "acciones.php",
		data: "accion=votar&id="+id+"&nota="+nota+"&que="+que,
		success: function(msg){
			$("#votar_video_"+id).html(msg);
			// document.getElementById("votar_video_"+id).innerHTML = msg;
		}, 
		error: function(xho){
			document.getElementById("votar_video_"+id).innerHTML = "Error:"+xho.responseText;
		}
	});	
}
