/***************************************************************************
* # COPYRIGHT WMIO.EU		                    	                     # *
* # Web Management Interface Online                	                     # *
***************************************************************************/

	function AjsFRM1Vrf()
		{
		if(document.getElementById('FRM1Log').value.length < 3 || document.getElementById('FRM1Log').value.length > 16)
			{
			alert("Connexion impossible :\rLe nom d'utilisateur est invalide.");
			return false;
			}
		if(document.getElementById('FRM1Mdp').value.length < 3 || document.getElementById('FRM1Mdp').value.length > 16)
			{
			alert("Connexion impossible :\rLe mot de passe est invalide.");
			return false;
			}
		}
	
	function AjsBddErr(Txt)
		{
		if(Txt != '')
			{
			alert(Txt);
			return false;
			}
		}

