﻿/***************************************************************************************************
                           Affiche une fenêtre popup centrée sur l'écran
  ***************************************************************************************************/
  function popup(file,win_w,win_h)
  {
    //--> Résolution de l'écran
    if (document.all)
	  var xMax = screen.width, yMax = screen.height;
    else
	  if (document.layers)
	    var xMax = window.outerWidth, yMax = window.outerHeight;
	  else
	    var xMax = 800, yMax=600;

    //---> Position par rapport à l'écran
    var xOffset = (xMax - win_w)/2, yOffset = (yMax - win_h)/2;
  
    //---> Ouverture de la fenêtre
	window.open(file,'', 'status=no,scrollbars=1,toolbar=non,width='+win_w+',height='+win_h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'')
  } //Fin popup
  
