_uacct = "UA-2907262-17";

function traceStats(page) {
	
	//Appel _stats/tracing.php
	sendData("_stats/tracing.php","mypage="+page);
	_uacct = "UA-2907262-17";
	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
}
