<!-- //Fonction d'appel des pages E-NEWS et Tracking
function pop(pLien, id_track, pBoolean) {
	var win = new Window({className: "dialog", title: "", width: popLargeur, height: popHauteur, draggable: false, resizable: false, recenterAuto: true, minimizable: false, maximizable: false, fermer:popBoutonFermeture, url: pLien, showEffectOptions: {duration: popDuree}, hideEffectOptions: {duration: popDuree}});
	win.showCenter(true);
	Click(id_track);
	if (!pBoolean) return pBoolean;
}

var xmlhttp = false;
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	xmlhttp = new XMLHttpRequest();
}

function Click(a) {
	if (a != 0) {
		fragment_url = '/clic.php?sort='+a;
		xmlhttp.open("GET", fragment_url);
		xmlhttp.onreadystatechange = function() {
			if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
				tmp = xmlhttp.responseText;
			}
		}
		xmlhttp.send(null);
	}
}
 -->