function LPop(url,nom,attributs){
  pass =  window.open (url,nom,attributs)
}

function changeParent(url) {
   window.opener.location=url;
   self.close();
}

function changeParentNoClose(url) {
   window.opener.location=url;
}
