<!-- 
/* Function to load a new page when a navigation button is pressed */
function loadPage(PageName) {window.location.replace(PageName)}

/* Function to change the main image on the detail window */
function ChangeImage(Tochange, Newimage)
  {
  var ImageToChange = document.getElementById(Tochange);
	ImageToChange.src = Newimage;
  }

/* Switch image */	
function sw(div, img) 
  {
  var d = document.getElementById(div);
  var i = document.getElementById(img);

  if (d.style.display == 'none') 
	  {
    d.style.display = 'block';
    i.src = './images/agence.gif';
    } 
		else 
		{
    d.style.display = 'none';
    i.src = './images/accueil.gif';
    }
  }

/* Display message if right mouse button clicked */
var message="Bouton droit désactivé. Right button disabled";
function click(e) 
  {
  if (document.all) 
    {
    if (event.button == 2) 
      {
      alert(message);
      return false;
      }
    }
  if (document.layers) 
    {
    if (e.which == 3) 
      {
      alert(message);
			return false;
      }
    }
  }
if (document.layers) 
  {
  document.captureEvents(Event.MOUSEDOWN);
  }
document.onmousedown=click;

/* Function to return to the redisplay anchor on any page */
function goToAnchor() {
location.href = "ESIBienlist.php#Redisplay";
}

//--> 


