// JavaScript Document

var _xmlHttpPhoto = null;

var divPhoto;
var imgPhoto;
var titrePhoto;

var photoId;

window.onload = function() {
	divPhoto = document.getElementById("divPhoto");
	imgPhoto = document.getElementById("photo");
	titrePhoto = document.getElementById("titrePhoto");
}

function getXMLHTTP(){
  var xhr=null;
  if(window.XMLHttpRequest) // Firefox et autres
  xhr = new XMLHttpRequest();
  else if(window.ActiveXObject){ // Internet Explorer
    try {
      xhr = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xhr = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e1) {
        xhr = null;
      }
    }
  }
  else { // XMLHttpRequest non supporté par le navigateur
    alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
  }
  return xhr;
}

function viewPhoto(titrePhoto, fichierPhoto, lienPhoto) {
	imgPhoto.src = fichierPhoto;
	divPhoto.style.visibility = "visible";
}

function hidePhoto() {
	imgPhoto.src = "";
	divPhoto.style.visibility = "hidden";
}


