	function onRateStore(ratingValue) {
        var url = "Rate?tempStore=1&ratingValue=" + ratingValue;
        
        new Ajax.Request(url, {
            method: 'get', 
             onSuccess : function(transport) {
                // empty
            }				            
        });
    };

