// // JavaScript Document
// <!--
// xtnv = document;        //parent.document or top.document or document 
// xtsd = "http://logi3";
// xtsite = "93752";
// xtn2 = "11";        // level 2 site 
// xtpage = "";        //page name (with the use of :: to create chapters)
// xtdi = "1";        //implication degree
// //-->

function traceStats(page) {
	//Appel _stats/tracing.php
	sendData("_stats/tracing.php","mypage="+page);
	//Appel xiti
	xt_med('F',11,page);
	//Appel google
	_uacct = "UA-2907262-1";
	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
}
