Вот код там где отзывы
Код
<tr>
<td class="ProfileLeft" width="37%">Отзывы:</td><td class="ProfileRight"><a href="$_REP_READ_URL$" class="UserL" style="font-weight:bold; border-bottom:1px dotted green;color:green;" id="pOt"> </a> ↔ <a href="$_REP_READ_URL$" class="UserL" style="font-weight:bold; border-bottom:1px dotted red;color:red;" id="oOt"> </a></td>
</tr>
а вот скрипт
Код
<script type="text/javascript">
function getHistory(id) {
var plus = 0,
minus = 0;
$.get("/index/9-" + id, function (data) {
var pages = $('a.pgSwch:last', $('cmd[p="content"]', data).text()).html() || 0;
$("div[title]", $('cmd[p="content"]', data).text()).each(function () {
if ($(this).attr("title").indexOf("повышен") != -1) plus++;
if ($(this).attr("title").indexOf("понижен") != -1) minus++;
});
if (pages == 0) {
$('#pOt').append(plus);
$('#oOt').append(minus);
}
else {
for (var i = pages; i > 0; i--) {
$.get("/index/9-" + id + "-" + i, function (dt) {
$("div[title]", $('cmd[p="content"]', dt).text()).each(function () {
if ($(this).attr("title").indexOf("повышен") != -1) plus++;
if ($(this).attr("title").indexOf("понижен") != -1) minus++;
});
_plus = plus,
_minus = minus;
});
}
$('#pOt').append(_plus);
$('#oOt').append(_minus);
}
});
};
getHistory($_USER_ID$);
</script>