						
function EnregistreLogStat(fnc){

    Fermeture=fnc;
    
    xmlHttp=GetXmlHttpObject();
    if (xmlHttp==null){
        alert ("Votre navigateur n'est pas compatible AJAX!");
        return;
    } 
    var url="LogStat.aspx?Fermeture="+Fermeture;

    xmlHttp.onreadystatechange=stateChanged;
    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
} 

function stateChanged(){ 
    if (xmlHttp.readyState==4){
	    contenu=xmlHttp.responseText;
    }
}

function GetXmlHttpObject(){
    var xmlHttp=null;
    try{xmlHttp=new XMLHttpRequest();}
    catch (e){
        try{
            xmlHttp=new ActiveXObject("Msxml2.ServerXMLHTTP");
        }
        catch (e){
            xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
   
    }
    return xmlHttp;
}

/////////////////////////////////////////////////////////////////////////////////////////////////////////
