<!-- hide from JavaScript-challenged browsers
function openWindow(url,w,h,nom) {
	popupWin = window.open(url,nom,'directories=no,height='+h+',width='+w+',menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,alwaysRaised=yes')
}
function openWindowResizable(url,w,h,nom) {
	popupWin = window.open(url,nom,'directories=no,height='+h+',width='+w+',menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,alwaysRaised=yes')
}


function lienjs(url) {
  var maitre;
  if (opener.closed) {
    // si la fenętre principale est fermée
    maitre=window.open('','nomprincipal','toolbar=yes, location=yes,status=yes,menubar=yes, scrollbars=yes,resizable=yes,copyhistory=no');
    maitre.location.href = url;
  } else {
    // Si la fenętre principale est ouverte
    opener.location.href = url;
  }
  // Ferme le pop-up automatiquement
  // nomdupop=window.close()
}

// done hiding -->
