var WindowObjectReference = null; // global variable

//Ouvre dans la même fenêtre.
function ouvrirPopup(strUrl, strWindowName){
  if(WindowObjectReference == null || WindowObjectReference.closed){
    WindowObjectReference = window.open(strUrl, strWindowName, "width=500,height=500,resizable=yes,scrollbars=yes,status=yes");
  }
  else
  {
    WindowObjectReference.focus();
  };
}

//Ouvre dans une nouvelle fenêtre.
function ouvrirPopupNew(strUrl, strWindowName, width, height){
  window.open(strUrl, strWindowName, "width=" + width + ",height=" + height + ",resizable=yes,scrollbars=yes,status=yes");
}