Rules['a.make_rating:click'] = function (el, ev)
{
    var url = window.location;
    var pars = {
	url: url,
	nota: el.id
    };
    
    new Ajax.Request ('/a/srating.php', {method:'post', parameters: pars, onComplete: onc_srating});
    
    Event.stop (ev);
}

function onc_srating (request)
{
    var text = request.responseText;
    text = text.strip ();

    text = text.split (':');
    
    var width = (150 * text[0]) / 5;
    $('current_rating').setStyle ({width: width + 'px'});
    $('novotes').innerHTML = text[1];
}
