// JavaScript Document
<!--
function OuvreFen(page,width,height)
{
var left = (screen.width-width)/2  // positionnement au centre de l'écran
var top = (screen.height-height)/2 // positionnement au centre de l'écran
var strOptions="";
strOptions=" height="+height+", width="+width+", toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no,top="+top+",left="+left;
window.open(page,'', strOptions);

} 
// -->

