// JavaScript Document
<!--
/*
xtnv = document;             
xtsd = "http://logi3";
xtsite = "93752";
xtn2 = "14";    
xtpage = "";       
xtdi = "1"; 
*/
//-->

function traceStats(page) {
	//Appel _stats/tracing.php
	sendData("_stats/tracing.php","mypage="+page);
	//Appel xiti
	//xt_med('F',xtn2,page);
	//Appel google
	_uacct = "UA-2907262-9";
	urchinTracker(page);
}

var xmlhttp
function sendData(url,qs) {
	xmlhttp=null
	// code for Mozilla, etc.
	if (window.XMLHttpRequest) {
 		xmlhttp=new XMLHttpRequest()
		xmlhttp.onload = null;
    }
	// code for IE
	else if (window.ActiveXObject) {
  		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
 	}
	if (xmlhttp!=null) {
  		xmlhttp.onreadystatechange=stateChange
  		xmlhttp.open("POST",url,true)
		xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  		xmlhttp.send(qs)
		
		
	}else{
  		//alert("Your browser does not support XMLHTTP.")
    }
}

function stateChange() {
	//rien a executer
}


