function Defilement_message()
	{
	window.status=msg.substring(position,msg.length)+msg.substring(0,position);
	position=position+1;
	if (position>msg.length) position=0;
	window.setTimeout("Defilement_message()",200);
	}
function Valider()
	{
	CheckCourriel = document.Demande.Courriel.value;
	CourrielParties = CheckCourriel.split("@");
	if (document.Demande.Compagnie.value.length < 1)
		{
		alert("S.V.P. entrez le nom de votre compagnie ou organisme.");
		return false;
		}
	if (CheckCourriel.indexOf("@") < 0)
			{
			alert("S.V.P. entrer une adresse de courriel valide pour que nous puissions vous contacter !");
			return false;
		}
		else
			{
			if (CourrielParties[0] == "" || CourrielParties[1] == "")
				{
				alert("S.V.P. entrer une adresse de courriel valide pour que nous puissions vous contacter !");
				return false;
				}
			}
	return true;
	}
