// JavaScript Document

  
function ouvrePopup(page,largeur, hauteur, scroll)
{
  var haut=(screen.height/2)-(hauteur/2);
	var gauche=(screen.width/2)-(largeur/2);
  
  window.open (page, '', config='height='+hauteur+', width='+largeur+',top='+haut+', left='+gauche+', toolbar=no, menubar=no, scrollbars='+scroll+', resizable='+scroll+', location=no, directories=no, status=no')

}


