		/**
	*
	*
	*
	*
	*
	*/
	function verifInscriptionEntreprise(){
		var mesg = '';
		mesg +=champVide("raison_sociale"," - Raison sociale  ");
		mesg +=champVide("nom_commercial"," - Nom Commercial  ");
		mesg +=champVide("code_sa"," - Secteur d'activité  ");
		mesg +=champVide("adresse"," - Adresse  ");
		mesg +=champVide("ville"," - Ville  ");
		mesg +=champVide("code_postale"," - Code Postal  ");
		mesg +=champVide("code_pays"," - Pays   ");
		mesg +=champVide("code_region"," - Région  ");
		mesg +=champVide("telephone"," - Téléphone   ");
		mesg +=champVide("code_cate"," - Catégorie   ");
		mesg +=champVide("code_effectif"," - Effectif   ");
		mesg +=champVide("nom_gestionnaire"," - Nom   ");
		mesg +=champVide("prenom_gestionnaire"," - Prénom   ");
		mesg +=champVide("email_gestionnaire"," - Email   ");
		mesg +=champDeuxCompare("email_gestionnaire","email_gestionnaire_conf", " Confirmation email invalide ");
		mesg +=champDeuxCompare("password_gestionnaire","password_gestionnaire_conf", " Confirmation paswword invalide ");
		
		mesg +=champVide("password_gestionnaire"," - Mot de passe    ");
		mesg +=champVide("email_gestionnaire"," - Email   ");
		mesg +=champVide("code_captcha_ins", " - Tapez le code affiché ");
		
		
		mesg += verifChekced("accepter", "Vous devez accepter les Conditions Générales d'Utilisation de Keejob ");
		if(mesg==''){
			return true;	
		}else{
			alert(mesg);
			return false;
		}
	}
		/**
	*
	*
	*
	*
	*
	*/
	function verifProfil(){
		var mesg = '';
		mesg +=champVide("raison_sociale"," - Raison sociale  ");
		mesg +=champVide("nom_commercial"," - Nom Commercial  ");
		mesg +=champVide("code_sa"," - Secteur d'activité  ");
		mesg +=champVide("adresse"," - Adresse  ");
		mesg +=champVide("ville"," - Ville  ");
		mesg +=champVide("code_postale"," - Code Postal  ");
		mesg +=champVide("code_pays"," - Pays   ");
		mesg +=champVide("code_region"," - Région  ");
		mesg +=champVide("telephone"," - Téléphone   ");
		mesg +=champVide("code_cate"," - Catégorie   ");
		mesg +=champVide("code_effectif"," - Effectif   ");
		mesg +=champVide("nom_gestionnaire"," - Nom   ");
		mesg +=champVide("prenom_gestionnaire"," - Prénom   ");
		if(mesg==''){
			document.frm_inscription.submit();
			return true;	
		}else{
			alert(mesg);
			return false;
		}
	}
		/**
	*
	*
	*
	*
	*
	*/
	function verifPasswordEnt(){
		var mesg = '';
		mesg +=champVide("password_actuelle"," - Mot de passe Actuel ");
		mesg +=champVide("password_new"," - Nouveau mot de passe ");
		mesg +=champVide("password_confirm"," - Confiramtion mot de passe ");
		mesg +=champDeuxCompare("password_new","password_confirm", " Confirmation paswword invalide ");
		if(mesg==''){
			document.frm_inscription.submit();
			return true;	
		}else{
			alert(mesg);
			return false;
		}
	}