function star_on(id,ti,col) {

document.getElementById(id).className = "vote_h";

if(ti==2) {
rr="1_" + col;
document.getElementById(rr).className = "vote_h";
}

if(ti==3) {
rr="1_" + col;
document.getElementById(rr).className = "vote_h";
rr="2_" + col;
document.getElementById(rr).className = "vote_h";
}

if(ti==4) {
rr="1_" + col;
document.getElementById(rr).className = "vote_h";
rr="2_" + col;
document.getElementById(rr).className = "vote_h";
rr="3_" + col;
document.getElementById(rr).className = "vote_h";
}

if(ti==5) {
rr="1_" + col;
document.getElementById(rr).className = "vote_h";
rr="2_" + col;
document.getElementById(rr).className = "vote_h";
rr="3_" + col;
document.getElementById(rr).className = "vote_h";
rr="4_" + col;
document.getElementById(rr).className = "vote_h";
}

};


function star_off(id,ti,col) {
document.getElementById(id).className = "vote";

if(ti==2) {
rr="1_" + col;
document.getElementById(rr).className = "vote";
}

if(ti==3) {
rr="1_" + col;
document.getElementById(rr).className = "vote";
rr="2_" + col;
document.getElementById(rr).className = "vote";
}

if(ti==4) {
rr="1_" + col;
document.getElementById(rr).className = "vote";
rr="2_" + col;
document.getElementById(rr).className = "vote";
rr="3_" + col;
document.getElementById(rr).className = "vote";
}

if(ti==5) {
rr="1_" + col;
document.getElementById(rr).className = "vote";
rr="2_" + col;
document.getElementById(rr).className = "vote";
rr="3_" + col;
document.getElementById(rr).className = "vote";
rr="4_" + col;
document.getElementById(rr).className = "vote";
}

};
