I was having problems with the images showing up in the view_groups.asp page(the one where you can define custom star ratings) where the images wouldn't show up... I fixed this with a minor change to the coding.
the problem children are highlighted in red
Just add the thing highlighted in blue
original:
line 191 of admin/view_groups.asp
<td bgcolor="#FFFFFF" class="text"><img src="<% If strCustomStars <> "" Then Response.Write(strCustomStars) Else Response.Write("images/" & intStars & "_star_rating.gif") %>" alt="<% = intStars %> stars"></td>
modified:
<td bgcolor="#FFFFFF" class="text"><img src="<% If strCustomStars <> "" Then Response.Write("../" & strCustomStars) Else Response.Write("images/" & intStars & "_star_rating.gif") %>" alt="<% = intStars %> stars"></td>