function OuvrirFenetre(url, width, height)
{
  var wndWidth = ( width / 100 * screen.width );
  var wndHeight = ( height / 100 * screen.height );
	  
  wnd = window.open(url, "", "resizable=yes, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, alwaysraised=yes, width=" + wndWidth + ", height=" + wndHeight);
  wnd.moveTo( ( screen.width - wndWidth ) / 2, ( screen.height - wndHeight ) / 2 );
}

function OuvrirFenetreBarre(url, width, height)
{
  var wndWidth = ( width / 100 * screen.width );
  var wndHeight = ( height / 100 * screen.height );
	  
  wnd = window.open(url, "", "resizable=yes, scrollbars=yes, toolbar=yes, location=yes, directories=yes, status=yes, alwaysraised=yes, width=" + wndWidth + ", height=" + wndHeight);
  wnd.moveTo( ( screen.width - wndWidth ) / 2, ( screen.height - wndHeight ) / 2 );
}
