function rate(id,rate,hash) {
  document.getElementById(id+'rating').innerHTML = '<div style="text-align: center;"><img src="images/loading_bar.gif" alt="..." /></div>';

//  new Ajax('engine/external/rate.php?rate='+rate+'&hash='+hash, {
//  		method: 'get',
//  		onSuccess: function() {
//        var temp = new Array();
//        temp = this.response['text'].split('|');
//        document.getElementById(id+'rating').innerHTML = temp[0];
//        document.getElementById(id+'progressbar').style.width = temp[1] + 'px';
//      }
//  }).request();

  $.get('engine/external/rate.php?rate='+rate+'&hash='+hash,
  function(data){
    temp = data.split('|');
    document.getElementById(id+'rating').innerHTML = temp[0];
    document.getElementById(id+'progressbar').style.width = temp[1] + 'px';
  }
  );
}
