<!-- Ajax Validator Tool -->
function creationXHR() {
var resultat=null;
try	{
	resultat=new XMLHttpRequest();
}
catch(Error) {
	try {
	resultat=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(Error) {
		try{
			resultat=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(Error) {
			resultat=null;
		}
	}
}
return resultat;
}
var objetXHR=creationXHR();
function traitementResultat(){
	if(objetXHR.readyState==4) {
		var result=objetXHR.responseText;
		var img=result+'.gif'
		document.getElementById('w3c').innerHTML='<img src="menus/img/'+img+'" alt="'+result+'" />';
	}
}
objetXHR.onreadystatechange=traitementResultat;
objetXHR.open("get","ajax.php?url="+page,true);
objetXHR.send(null);
