<!--
function fenCentre(Url,nomFen,tailleX,tailleY,scrol)
	{
	ecranX=screen.width;
	ecranY=screen.height;
	var posX=(ecranX-tailleX)/2;
	var posY=(ecranY-tailleY)/2;
	posX = Math.ceil(posX);
	posY = Math.ceil(posY);
	if (scrol=='oui')
		param='\'resizable=yes,scrollbars=yes,height='+tailleY+',top='+posY+',left='+posX+',width='+tailleX+'\'';
	else
		param='\'resizable=yes,height='+tailleY+',top='+posY+',left='+posX+',width='+tailleX+'\'';		
	window.open(Url,nomFen,param);
	}
	
function Lien(fgauche, fcentre) {
	window.parent.parent.leftFrame.document.location.href = fgauche;
	window.parent.mainFrame.document.location.href = fcentre;
}

function ouvrePopup(page, nom){
		popup = window.open(page,nom,"with=10,height=10")
		popup.resizeTo(600,300)
}

function RedimEtOuve(page, l, h){
	ecranX=screen.width;
	ecranY=screen.height;
	var posX=(ecranX-l)/2;
	var posY=(ecranY-h)/2;
	posX = Math.ceil(posX);
	posY = Math.ceil(posY);
	self.location.href = page;
	self.resizeTo(l,h);
	self.moveTo(posX, posY);
}

//-->