installation:
1. View comments, where you want to see the inscription "Online":
Code
<?if($IS_OWN$)?><div style="text-align:center; color:green;">Online</div><?else?><div style="display:none; text-align:center; color:green;" class="stati">$PROFILE_URL$</div><?endif?>
2. On the page of the material and its comments, to the very end:
Code
<script type="text/javascript">
$.get('/index/62', function(d){ // uSite.su
var dll = $('cmd[p="content"]',d).text();
$('a',dll).each(function(){
var tik = $(this).attr('href');
$('.stati').each(function(){
if($(this).text() == tik){ $(this).text('Online').show(); }
});
});
});
</script>