/*********************************************************************/
/*  Gestion du menu													 */
/*********************************************************************/
window.onload=montre;

function montre(id) 
{
	var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) 
	{
		if (document.getElementById('smenu'+i)) 
		{
			document.getElementById('smenu'+i).style.display='none';
		}
	}
	if (d) 
	{
		d.style.display='block';
	}
}

/*********************************************************************/
/*  Gestion des popup												 */
/*********************************************************************/
function popup(page,xx,yy) 
{
	var haut=(screen.height-xx)/2;
	var gauche=(screen.width-yy)/2;
    window.open(page, 'ag', 'top='+haut+', left='+gauche+', resizable=no, location=no, width='+xx+', height='+yy+', menubar=no, status=no, scrollbars=no, menubar=no');
}