function connection(){
	    //-------------ouverture connection--------------------
	    if(window.XMLHttpRequest) // Firefox
	       xhr_object = new XMLHttpRequest();
	    else if(window.ActiveXObject) // Internet Explorer
	       xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	    else { // XMLHttpRequest non supporté par le navigateur
	       alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
	       return;
	    }
	  }	  	  

	  
function lectureXml(){
   if(window.XMLHttpRequest)     //---------> Firefox
      var xhr = new XMLHttpRequest();
   else if(window.ActiveXObject) //---------> Internet Explorer
      var xhr  = new ActiveXObject("Microsoft.XMLHTTP");
   else {  //--------- XMLHttpRequest non supporté par le navigateur --------
      alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
      return;
   }
   }
  
function photomontage(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "photomontage.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	
  
function portrait(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "portrait.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	
  
  function portraits(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "portraits/portraits.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	
  
 function supprimer(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "supprimer.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 

function modifier(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "modifier.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 

  function extraire(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "extraire.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 
 
 
  function photographie(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "photographie/photographie.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 
  
  
  function internet(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "internet.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	   

function contact(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "contact.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 

function tarifs(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "tarifs.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	     
  
  function mention(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "mention.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	

function prestation(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "prestation.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	       
  
function reproduction(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "reproduction.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	 

function retouche(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "retouche.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	

function reportage(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "retouche.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }
  
function thematic(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "thematique/thematique.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	  
  
 function photo_panoramique(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "panoramique/photographie_panoramique.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }
  
  function paysages_panoramique(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "panoramique/paysages_panoramique.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }
  
  function panorama_mini(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "panoramique/photographie_panoramique.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }
  
  
function photographe_panoramique_rouen(){
    connection();
	//alert("ddd");
    //-------------reception des données ------------------
    xhr_object.open("GET", "panoramique/photographe_panoramique_normandie.php", true);
    xhr_object.setRequestHeader("Content-Type", "text/html; charset=UTF-8");
    xhr_object.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xhr_object.onreadystatechange = function() {
        if(xhr_object.readyState == 4) {
            if (xhr_object.status == 200 || xhr_object.status == 304){
                 document.getElementById('ajax').innerHTML =xhr_object.responseText;
            }
        }
    }
    xhr_object.send(null);
  }	  

 