var desc=new Array();
var vots=new Array();
function descarregues(id){
	if (!desc[id]){
	  desc[id]=1;
	  if (window.XMLHttpRequest) {
	    consulta_php = new XMLHttpRequest();
	  } else if (window.ActiveXObject) {
	    consulta_php = new ActiveXObject("Microsoft.XMLHTTP");
	  }
	  consulta_php.open('GET', '/php/ajax.php?id='+id);
	  consulta_php.send(null);
	}
}
function vota(id,punts){
	if (!vots[id]){
	  vots[id]=1;
	  if (window.XMLHttpRequest) {
	    consulta_php = new XMLHttpRequest();
	  } else if (window.ActiveXObject) {
	    consulta_php = new ActiveXObject("Microsoft.XMLHTTP");
	  }
	  consulta_php.open('GET', '/php/ajax.php?op=vota&id='+id+'&punts='+punts);
	  consulta_php.send(null);
	}
}
function download(id){
	descarregues(id);
	window.open('/php/download.php?id='+id);
}
function enlazar(e){
	if (document.getElementById(e).style.display=='block') document.getElementById(e).style.display='none';
	else document.getElementById(e).style.display='block'; 
}
function ilumina(a,b){
	if (!vots[a]) for(i=1;i<=b;i++) document.getElementById("estrella["+a+"]["+i+"]").src="/imatges/estrella_azul_llena.png";
}
function enfosqueix(a){
	if (!vots[a]) for(i=1;i<=5;i++) document.getElementById("estrella["+a+"]["+i+"]").src="/imatges/estrella_azul.png";
}

