/*--------------------------------------
// Module Web 2.0 
// Developpement G.BAUZA
---------------------------------------- */
var XhrObj=null;
var XhrObj2=null;
 
 
if(window.XMLHttpRequest){
	XhrObj=new XMLHttpRequest();
}else if(window.ActiveXObject){
	XhrObj=new ActiveXObject("Microsoft.XMLHTTP");
}else{
	// Navigateur Non Compatible au XMLHttpRequest
	alert("Votre navigateur n'est pas compatible avec la technologie utilisée.");
	document.location.href="index.php";
}

function axGetPage(id, noPage, act){

	//alert("XhrObj = "+XhrObj); //DEBUG
	// Utilise la méthode GET
  XhrObj.open("GET", "/prelais/axGetPage.php?id="+id+"&NoPage="+noPage+"&act="+act);
  //Ok pour la page cible
  XhrObj.onreadystatechange = function(){
		if (XhrObj.readyState == 4 && XhrObj.status == 200)
	    document.getElementById('ctn1').innerHTML = XhrObj.responseText ;
  }
	// alert("XhrObj state : "+XhrObj.readyState); //DEBUG
	//Flush le Buffer    
  XhrObj.send(null);

//$("ctn1").load("//prelais/axGetPage.php",{id :"+id+", NoPage: "+noPage+", 

}
