<script language="JavaScript">
<!--
// Fonction javascript permettant d'afficher un popup avec une dimension précise
function fenetre_apercu_editeur(nom) 
  {
    var w = 800, h = 600
      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;
          var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;
 
	window.open(nom,'new','status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
  }
  //-->
</script>
<script language="JavaScript">
<!--
// Fonction javascript permettant d'afficher un popup avec une dimension précise
function fenetre_apercu_emplacement_page(nom) 
  {
    var w = 300, h = 400
      if (document.all)
        var xMax = screen.width, yMax = screen.height;
      else
        if (document.layers)
          var xMax = window.outerWidth, yMax = window.outerHeight;
        else
          var xMax = 300, yMax=400;
          var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;
 
	window.open(nom,'new','status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
  }
  //-->
</script>
