// JavaScript Document
function creationXHR() {
	var resultat=null;
	try {//test pour les navigateurs : Mozilla, Opéra, ...
		resultat= new XMLHttpRequest();
	} 
	catch (Error) {
		try {//test pour les navigateurs Internet Explorer > 5.0
			resultat= new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (Error) {
			try {//test pour le navigateur Internet Explorer 5.0
				resultat= new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (Error) {
				resultat= null;
			}
		}
	}
	return resultat;
}

