function rate(linkObj)
{jQuery.getJSON(linkObj.href,function(answer)
{if(answer.done)
{jQuery('#rating_value_main').css({width:(20*answer.ratingValue)+'px'});jQuery('#rating_value_right').css({width:(14*answer.ratingValue)+'px'});jQuery('#rating_quantity_right').html(calcStringNumberFull(answer.ratingsCount,'голос','','а','ов'));jQuery('#popup_simple p:first').html('Ваша оценка &mdash; <strong>'+calcStringNumberFull(answer.mark,'балл','','а','ов')+'</strong>. Спасибо, ваш голос учтен!');}
else
{jQuery('#popup_simple p:first').html('Невозможно выполнить данное действие');}
showPopup(linkObj,'popup_simple');setTimeout("closePopup('popup_simple')",2000);})
return false;}
