var registrat=0;
var idvideo='';
var context='';
var language='';
var servidor='';
var puntuacio=new Array();
puntuacio[0]=0;
puntuacio[1]=0;
puntuacio[2]=0;
puntuacio[3]=0;
puntuacio[4]=0;
puntuacio[5]=0;

function votar(punts){
	for(i=1;i<=punts;i++){
	document.getElementById('estrella'+i).style.backgroundImage = "url("+context+"web/imatges/voto_hecho.png)";
	}
	for(i=punts+1;i<=5;i++){
	document.getElementById('estrella'+i).style.backgroundImage = "url("+context+"web/imatges/voto.png)";
	}
}

function novotar(){
	for(i=1;i<=5;i++){
		switch(puntuacio[i]){
			case 0:
					document.getElementById('estrella'+i).style.backgroundImage = "url("+context+"web/imatges/voto.png)";
					break;
			case 1:
					document.getElementById('estrella'+i).style.backgroundImage = "url("+context+"web/imatges/voto_hecho.png)";
					break;
			case 0.5:
					document.getElementById('estrella'+i).style.backgroundImage = "url("+context+"web/imatges/voto_medio.png)";
					break;
		}
	}
	//document.getElementById('qualificacions').innerHTML='<a href=\"mff_shortinscripcion.php?accion=shortinscripcion&idvideo='+idvideo+'\">Reg&iacute;strate</a> para votar&nbsp;';
}


function fer_vot(voto)
{
	if(registrat>0){
		fes_solicitud(servidor+context+'video/votarajax/'+idvideo+'/'+voto+'/'+language+'/','estrellas');
		document.getElementById('qualificacions').innerHTML='Votando ...';
		return false;
	}
	else{
		document.location.href=context+'video/votar/'+idvideo+'/'+voto+'/'+language+'/';
		return true;
	}
}
