
function OuvrirFenetre(url)
{
	window.open(url);
}

function OuvrirPopup(url,l,h)
{
	var x=(screen.width-l)/2;
	var y=(screen.height-h)/2;
	window.open(url,"","top="+y+",left="+x+",width="+l+",height="+h+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes");
}

function OuvrirPopupScroll(url,l,h)
{
	var x=(screen.width-l)/2;
	var y=(screen.height-h)/2;
	window.open(url,"","top="+y+",left="+x+",width="+l+",height="+h+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

