// other // ////////////////////////////////////////////// // Javascript for star ratings // ////////////////////////////////////////////// function rate(mov_id, stars){ // initialize var star_id = mov_id+'_star_0'; if(stars == 0){ document.getElementById(star_id).src='/images/star_rate_none_on.png'; } else{ document.getElementById(star_id).src='/images/star_rate_none.png'; } star_id = mov_id+'_star_1'; if(stars >= 1){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_2'; if(stars >= 2){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_3'; if(stars >= 3){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_4'; if(stars >= 4){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_5'; if(stars == 5){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } } function original_rate(mov_id, rating, type){ // mov_id = movie id // rating = movie rating. ex 0, 1, 2, 3, 3.5, 4.5, 5 // type = user or group << determines star color // initialize var star_id = mov_id+'_star_1'; var star_id_none = mov_id+'_star_0'; if (type == 'user') { if (rating == 0) { document.getElementById(star_id_none).src='/images/star_rate_none_on.png'; } else { document.getElementById(star_id_none).src='/images/star_rate_none.png'; } } else { document.getElementById(star_id_none).src='/images/star_rate_none.png'; } if(rating == 0){ document.getElementById(star_id).src='/images/star_rate_grey.png'; star_id = mov_id+'_star_2'; document.getElementById(star_id).src='/images/star_rate_grey.png'; star_id = mov_id+'_star_3'; document.getElementById(star_id).src='/images/star_rate_grey.png'; star_id = mov_id+'_star_4'; document.getElementById(star_id).src='/images/star_rate_grey.png'; star_id = mov_id+'_star_5'; document.getElementById(star_id).src='/images/star_rate_grey.png'; } if(rating == .5){ document.getElementById(star_id).src='/images/star_rate_orange_half.png'; } else if(rating >= 1){ if(type == 'user'){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_orange.png'; } } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_2'; if(rating == 1.5){ document.getElementById(star_id).src='/images/star_rate_orange_half.png'; } else if(rating >= 2){ if(type == 'user'){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_orange.png'; } } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_3'; if(rating == 2.5){ document.getElementById(star_id).src='/images/star_rate_orange_half.png'; } else if(rating >= 3){ if(type == 'user'){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_orange.png'; } } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_4'; if(rating == 3.5){ document.getElementById(star_id).src='/images/star_rate_orange_half.png'; } else if(rating >= 4){ if(type == 'user'){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_orange.png'; } } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } star_id = mov_id+'_star_5'; if(rating == 4.5){ document.getElementById(star_id).src='/images/star_rate_orange_half.png'; } else if(rating >= 5){ if(type == 'user'){ document.getElementById(star_id).src='/images/star_rate_yellow.png'; } else{ document.getElementById(star_id).src='/images/star_rate_orange.png'; } } else{ document.getElementById(star_id).src='/images/star_rate_grey.png'; } }