В Общий вид страниц форума после $BODY$ ставим этот код:
Code
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('td.gTableSubTop').find("a:contains('Просмотры')").html('Популярность');
$('td.threadViewTd').each(function(){
if($(this).html() > 0 && $(this).html() < 10 || $(this).html() == 0 && $(this).html() < 9){$(this).html('<img title="Очень низкая популярность" src="http://orlenok.do.am/files/1stars.gif" border="0" alt="img" />');}
if($(this).html() > 9 && $(this).html() < 30){$(this).html('<img title="Низкая популярность" src="http://orlenok.do.am/files/1stars.gif" border="0" alt="img" />');}
if($(this).html() > 29 && $(this).html() < 50){$(this).html('<img title="Средняя популярность" src="http://orlenok.do.am/files/2stars.gif" border="0" alt="img" />');}
if($(this).html() > 49 && $(this).html() < 70){$(this).html('<img title="Высокая популярность" src="http://orlenok.do.am/files/3stars.gif" border="0" alt="img" />');}
if($(this).html() > 69 && $(this).html() < 100){$(this).html('<img title="Очень высокая популярность" src="http://orlenok.do.am/files/4stars.gif" border="0" alt="img" />');}
if($(this).html() > 99){$(this).html('<img title="Супер популярная тема" src="http://orlenok.do.am/files/5stars.gif" border="0" alt="img" />');}
});
});
</script>