// JavaScript Document

// -------------------------  Fonction pop up -----------------------------------


function doPopups() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("popup")) {
      links[i].onclick = function() {
        window.open(this.href,"fenetre","toolbar=0,location=0,directories=0,resizable=0,status=0,scrollbars=0,top=50,left=50,width=640,height=480");
        return false;
		{if(window.focus){window.focus();}}
      }
    }
  }
}
window.onload = doPopups;