<!--
function ValidCode(theForm)
{
	if(theForm.CODE0.value == "")
	{
		alert("Veuillez saisir un code d'accès S.V.P.");
		theForm.CODE0.focus();
		return(false);
	}
	
	return(true);
}
//-->