//ajax script to call the ajax counter
function ajaxCounter(game,link,file)
{
	if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		http_request = new XMLHttpRequest();
	} else if (window.ActiveXObject) { // IE
		http_request = new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	var url = 'ajax_counter/ajax_counter.php?game='+game+'&link='+link+'&file='+file;
	
	http_request.open('GET',url,true);
	http_request.send(null);
	
}