// JavaScript Document
function popup(LaPage,titre,largeur,hauteur) 
{
	status = 'no';
	tscroll = 'no';
	resize = 'no';
	titlebar = 'no';
	if (arguments.length >= 5) status = arguments[4];
	if (arguments.length >= 6) tscroll = arguments[5];
	if (arguments.length >= 7) resize = arguments[6];
	if (arguments.length >= 8) titlebar = arguments[7];
	window.open(LaPage,titre,'width='+ largeur +',height='+ hauteur +',status='+ status +',scrollbars='+ tscroll +',resizable='+ resize +',titlebar='+ titlebar+',left='+((screen.width-largeur)/2)+',top='+((screen.height - hauteur)/2));
}