<!-- Begin
if (top.frames.length!=0) top.location=self.document.location;

function openWindow(fichier,nomFenetre,positionGauche,positionHaute,largeur,hauteur,attributs)
{
  if (hauteur=="100%") {
    hauteur=(screen.height)?(screen.height):100;
    hauteur+=-150;
  }
  if (positionHaute=="centrer") {
    positionHaute=(screen.height)?(screen.height-hauteur)/2:100;
  }
  if (positionGauche=="centrer") {
    positionGauche=(screen.width)?(screen.width-largeur)/2:100;
  }
  if (positionGauche=="droite") {
    positionGauche=(screen.width)?(screen.width-largeur)/1:100;
    positionGauche+=-8;
  }
  var myWindow=open(fichier, nomFenetre, "top="+positionHaute+",left="+positionGauche+",width="+largeur+",height="+hauteur+","+attributs);
  myWindow.document.close();
  myWindow.focus();
}
//  End -->
