// JavaScript Document

function popup(page,nom,option) {
	var w=window.open(page,nom,option);
	w.document.close();
    w.focus();
	}
	
function lien(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()
}
// Fin -->
