// JavaScript Document
function file(fichier) {
	var xhr_object=null;
	if(window.XMLHttpRequest) {
		xhr_object = new XMLHttpRequest();
	}
	else if(window.ActiveXObject) { 
		try {
			xhr_object = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {}
		}
	}
	else {
		//xhr_object = new ActiveXObject("Msxml2.XMLHTTP"); 
		//alert("etato");
		return(false);
	}
	xhr_object.open("GET", fichier, false);
	xhr_object.send(null);
	if(xhr_object.readyState == 4) return(xhr_object.responseText);
	else {
		return(false);
	}
}