function stringCheck (Str, NomChamp) 
	{
	if (Str.match(/[#\{\}\[\]|#&~<>,;\.:\/\\=\+\$\*µ£¤()@]/))
		{
		alert("\nLe champ "+ NomChamp +" contient l'un de ces caractères interdits :\n()#{}[]|#&~<>,;.:/\=+$*µ£¤@");
		return false;
		}
	return true;
	}
