function OpenCuriosite (nom) {
	url="/curiosites/"+nom+".php";
	var oeuvre=window.open(url,"Curiosites","scrollbars=yes,resizable=no,toolbar=no,status=no,menubar=no,location=no,directories=no,width=720,height=420");
	window.onerror = null;
	var v_X = (parseInt (screen.width,'px') - 720) / 2;
	var v_Y = (parseInt (screen.height,'px') - 420) / 2;
	oeuvre.moveTo (v_X,v_Y);
	oeuvre.focus();
}

function retour_fenetre_principale (url) {
var maitre;

  if (opener.closed) {
    // si la fen&ecirc;tre principale est ferm&eacute;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&ecirc;tre principale est ouverte
    opener.location.href = url;
  }
  // Ferme le pop-up automatiquement
  self.close()
}
