/* Fonction 'OpenPopDef */
/* Pour ouvrir une popup d'information */
function OpenPopDef(href, title){
  popupDef = window.open(href, title, "resizable=yes, scrollbars=yes, width=500, height=350, screenX=50, screenY=50");
  popupDef.focus();
}

