<!--
function AfficheImage(titre)
{
	document.images[titre].src = "images/"+titre+"-over.jpg";
}

function RetireImage(titre)
{
	document.images[titre].src = "images/"+titre+".jpg";
}

function ValideNumero()
{
	var Numero = document.MainForm.eList.value;
		
	if (isNaN(parseInt(Numero)))
	{
		alert("Vous devez entrer un numéro e-List valide!");
		return false;
	}
	else
	{
		document.MainForm.eList.value = "" + parseInt(Numero);
		return true;	
	}		
}
//-->
