var vote = " empty "; function new_rating(type,x,y,z,id) { document.getElementById("rating_frame").src = "https://www.favoriten-online.com/includes/pages/rating.php?type=" + type + "&id=" + id + "&rating=" + z; if(vote.indexOf("|" + id + "|") < 1) { vote = vote + "|" + id + "|"; x = x + z; y = y + 1; z = x / y; for(var i=1;i<6;i++) { var id_tmp = id + "_" + i; if(z>=i) { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star_ac.gif"; } else { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star.gif"; } } } } function rating(type,n,id) { if(vote.indexOf("|" + id + "|") < 1) { if(type=='select') { for(var i=1;i<6;i++) { var id_tmp = id + "_" + i; if(n>=i) { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star_ac.gif"; } else { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star.gif"; } } } if(type=='view') { for(var i=1;i<6;i++) { var id_tmp = id + "_" + i; if(n>=i) { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star_ac.gif"; } else { document.getElementById(id_tmp).src = "https://www.favoriten-online.com/template/media/rating/star.gif"; } } } } }