function getTopvictories(start, place_topvict, nbvictprec, placetemp) {
	var ajax = new Ajax.Updater('topvictories', 'arcade_topplayers.php', {
		method: 'get', 
		parameters: 'start=' + start + '&place_topvict=' + place_topvict + '&nbvictprec=' + nbvictprec+ '&placetemp=' + placetemp, 
		onFailure: function() { alert('Error !'); }
	});
}
function getToppoints(start, place_toppoints, nbpointsprec, placetemp2) {
	var ajax = new Ajax.Updater('toppoints', 'arcade_topplayers.php', {
		method: 'get', 
		parameters: 'start=' + start + '&place_toppoints=' + place_toppoints + '&nbpointsprec=' + nbpointsprec + '&placetemp2=' + placetemp2, 
		onFailure: function() { alert('Error !'); }
	});
}
Ajax.Responders.register({
  onCreate: function() {
    $('arcade_indicator').style.display = "inline";
  },
  onComplete: function() {
    $('arcade_indicator').style.display = "none";
  }
});
