// JavaScript Document
var fenetrefixe=0;
function fenetre_fix(URLStr, left, top, width, height)
{ 
  if(fenetrefixe)
  {
    if(!fenetrefixe.closed) fenetrefixe.close();
  }
  fenetrefixe = open(URLStr, 'fenetre_fixe', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}
