
// Funciones para obtener la imagen de las estrellas segun su puntuacion


//estrellas de la pagina de album
function obtenerEstrellasGrandes(voto){

    if (voto >= 0.0 && voto <=0.5 ) document.getElementById("estrellas").src = "stars/00.png";
    else if (voto >= 0.6 && voto <=1.5 ) document.getElementById("estrellas").src = "stars/01.png";
    else if (voto >= 1.6 && voto <=2.5 ) document.getElementById("estrellas").src = "stars/02.png";
    else if (voto >= 2.6 && voto <=3.5 ) document.getElementById("estrellas").src = "stars/03.png";
    else if (voto >= 3.6 && voto <=4.5 ) document.getElementById("estrellas").src = "stars/04.png";
    else if (voto >= 4.6 && voto <=5.5 ) document.getElementById("estrellas").src = "stars/05.png";
    else if (voto >= 5.6 && voto <=6.5 ) document.getElementById("estrellas").src = "stars/06.png";
    else if (voto >= 6.6 && voto <=7.5 ) document.getElementById("estrellas").src = "stars/07.png";
    else if (voto >= 7.6 && voto <=8.5 ) document.getElementById("estrellas").src = "stars/08.png";
    else if (voto >= 8.6 && voto <=9.5 ) document.getElementById("estrellas").src = "stars/09.png";
    else if (voto >= 9.6 && voto <=10 ) document.getElementById("estrellas").src = "stars/10.png";
}


// estrellas de la pagina de artista
function obtenerEstrellasPequenas(voto,indice){

    if (voto >= 0.0 && voto <=0.5 ) document.getElementById("estrellas"+indice).src = "stars/00.png";
    else if (voto >= 0.6 && voto <=1.5 ) document.getElementById("estrellas"+indice).src = "stars/01.png";
    else if (voto >= 1.6 && voto <=2.5 ) document.getElementById("estrellas"+indice).src = "stars/02.png";
    else if (voto >= 2.6 && voto <=3.5 ) document.getElementById("estrellas"+indice).src = "stars/03.png";
    else if (voto >= 3.6 && voto <=4.5 ) document.getElementById("estrellas"+indice).src = "stars/04.png";
    else if (voto >= 4.6 && voto <=5.5 ) document.getElementById("estrellas"+indice).src = "stars/05.png";
    else if (voto >= 5.6 && voto <=6.5 ) document.getElementById("estrellas"+indice).src = "stars/06.png";
    else if (voto >= 6.6 && voto <=7.5 ) document.getElementById("estrellas"+indice).src = "stars/07.png";
    else if (voto >= 7.6 && voto <=8.5 ) document.getElementById("estrellas"+indice).src = "stars/08.png";
    else if (voto >= 8.6 && voto <=9.5 ) document.getElementById("estrellas"+indice).src = "stars/09.png";
    else if (voto >= 9.6 && voto <=10 ) document.getElementById("estrellas"+indice).src = "stars/10.png";
}