// Liens externes --------------------------------------------------------------
function openWin(URL){
	window.open(URL,'detail', "height=500, width=500, scrollbars=yes, resizable=yes");
}

function openSite(strLocationURL) {
  var siteWindow = null;
  siteWindow = window.open(strLocationURL);
}

function checkExternalLinks() {
  var objLinks = document.getElementsByTagName("a");
  for (i=0; i < objLinks.length; i++) {
    if (objLinks[i].href.length > 0) {
      if (objLinks[i].href.indexOf(document.domain) == -1 && objLinks[i].href.indexOf("javascript:") == -1 && objLinks[i].href.indexOf("mailto:") == -1) {
      objLinks[i].href = "javascript: openSite('" + objLinks[i].href + "');";
      }
    }
  }
}

try {
  window.addEventListener("load", checkExternalLinks, true);
}
catch(ex) {
  window.attachEvent("onload", checkExternalLinks);
}

// Gestion du survol de blocs pour IE ------------------------------------------

function rollOver(element) {
  element.style.background='#e2f2f8';
}
function rollOut(element) {
  element.style.background='#fff';
}

