function addClic(idconcours){
	if(idconcours != ''){
		file('http://www.forumgagnant.com/js/addclic.php?idC='+escape(idconcours));
	}
}

function file(fichier){
	var xhr=null;
    
    if (window.XMLHttpRequest) { 
        xhr = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) 
    {
        xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }
	
	xhr.open("GET", fichier, false);
	xhr.send(null);
}