function makeRequest(page) {

        var xhr;
        if(window.XMLHttpRequest || window.ActiveXObject) {
                if(window.XMLHttpRequest) {
                        xhr = new XMLHttpRequest();
                } 
                else {
                        try {
                                xhr = new ActiveXObject("Msxml2.XMLHTTP");
                        } catch(e) {
                                xhr = new ActiveXObject("Microsoft.XMLHTTP");
                        }
                }
        }
        else {
                alert("Votre navigateur ne supporte pas l'objet XMLHTTPRequest...");
                return;
        }
        
        xhr.onreadystatechange = function() {
                if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 0)) {
			var text=xhr.responseText;
			var script="";
			var debut = -1;
			var fin = -1;
			document.getElementById("corp").innerHTML = "";
			while((debut = text.indexOf("<script")) >= 0)
				{
                        	document.getElementById("corp").innerHTML += text.substring(0,debut);
				fin = text.indexOf("</script>",debut);
				script = text.substring(text.indexOf(">",debut)+1,fin);
				eval(script);
				text = text.substring(fin+9);
				}
			document.getElementById("corp").innerHTML += text;	
                }
        } 
        
        xhr.open("GET", page, true);
        xhr.send(null);
}



