// JavaScript Document

function popup(url,nom,largeur,hauteur,options)
	{
	var haut=(screen.height-hauteur)/2;
	var Gauche=(screen.width-largeur)/2;
	fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
	}

function MenuOpen(n)
	{
	document.getElementById('menu'+n).src='IMG/menu'+n+'b.jpg';
	}
function MenuClose(n)
	{
	document.getElementById('menu'+n).src='IMG/menu'+n+'a.jpg';
	}
function AjsAlerte(Txt)
	{
	if(Txt != '')
		{
		alert(Txt);
		return false;
		}
	}