function cliclic()
{
	//alert(gruik) ;
	document.form_mode_valid.submit() ;
}
//--------------------------------------------------------------------------------------------------------
function cliclic2()
{
	//alert("haha") ;
	document.form_mode_valid_inscription.submit() ;
}
//--------------------------------------------------------------------------------------------------------
function verif_nb_stagiaires()
{
	var temp ;
	var carac ;
	var ind

	//alert(document.form_mode_valid.nbkeums.value) ;
	if (document.form_mode_valid.nbkeums.value < 1)
	{
		alert("saisie du nombre de stagiaire incorrecte") ;
		document.form_mode_valid.nbkeums.focus() ;
		return false ;
	}

	temp = document.form_mode_valid.nbkeums.value ;
	for (ind=0 ; ind<temp.length ; ind++ )
	{
		carac = temp.substring(ind, ind+1) ;
		if ( (carac < "0") || (carac > "9") )
		{
			alert("saisie du nombre de stagiaire incorrecte") ;
			document.form_mode_valid.nbkeums.focus() ;
			return false ;
		}
	}

	/*
	if ( (document.form_mode_valid.nb_stagiaires = 0) || (document.form_mode_valid.nb_stagiaires > 900)
	{
		alert ("saisie du nombre de stagiaire incorrecte") ;
	}
	*/
}
//--------------------------------------------------------------------------------------------------------





//--------------------------------------------------------------------------------------------------------
function clic_contact_ok()
{
	var oketo ;
	var mess ;
	var mamail ;

	oketo = 1 ;
	if (document.form_contact.insc_nom.value=="")
	{
		oketo = 0 ;
		mess="\r- le nom" ;
	}
	if (document.form_contact.insc_email.value=="")
	{
		oketo = 0 ;
		mess=mess+"\r- l'email" ;
	}

	if (oketo != 1)
	{
		alert ("Veuillez saisir les champs suivants: "+mess) ;
		oketo = 0 ;
	}
	else
	{
		mamail = document.form_contact.insc_email.value ; 
		if (mamail.indexOf("@")==-1 || mamail.indexOf(".")==-1)
		{
			alert (" Adresse Email invalide") ;
			oketo = 0 ;
		}
	}
	if (oketo != 0)
	{
		document.form_contact.submit() ;
	}
}



//--------------------------------------------------------------------------------------------------------


function form_mode_valid_ok(devis_simple)
{

	var oketo ;
	var mess ;
	var mamail ;

	oketo = 1 ;

	if (!devis_simple)
	{
		if (document.form_mode_valid.insc_nom.value!=undefined)
		{
			if (document.form_mode_valid.insc_nom.value=="")
			{
				oketo = 0 ;
				mess="\r- le nom" ;
			}
		}
	}


	if (document.form_mode_valid.insc_email.value!=undefined)
	{
		if (document.form_mode_valid.insc_email.value=="")
		{
			oketo = 0 ;
			mess=mess+"\r- l'email" ;
		}
	}

	if (oketo != 1)
	{
		alert ("Veuillez saisir les champs suivants: "+mess) ;
		oketo = 0 ;
	}

	else
	{
		if (document.form_mode_valid.insc_email.value!=undefined)
		{
			mamail = document.form_mode_valid.insc_email.value ; 
			if (mamail.indexOf("@")==-1 || mamail.indexOf(".")==-1)
			{
				alert (" Adresse Email invalide") ;
				oketo = 0 ;
			}
		}
	}

	return (oketo) ;


}


//--------------------------------------------------------------------------------------------------------
function cliclic_infos_compl()
{

	document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=infos_compl" + "#devis"  ;
	document.form_mode_valid.submit() ;

}

//--------------------------------------------------------------------------------------------------------
function cliclic_infos_compl_ok()
{

	if (form_mode_valid_ok(0) != 0)
	{
		document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=infos_compl_ok" + "#devis"  ;
		document.form_mode_valid.submit() ;
	}

}

//--------------------------------------------------------------------------------------------------------
function cliclic_devis()
{
	document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=devis" + "#devis"  ;
	document.form_mode_valid.submit() ;
}
//--------------------------------------------------------------------------------------------------------
function cliclic_devis_ok()
{

	if (form_mode_valid_ok(1) != 0)
	{
		document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=devis_ok" + "#devis"  ;
		document.form_mode_valid.submit() ;
	}
	
}

//--------------------------------------------------------------------------------------------------------
function cliclic_inscription()
{
	//alert("haha") ;
	document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=preinscription" + "#devis"  ;
	document.form_mode_valid.submit() ;
}
//--------------------------------------------------------------------------------------------------------
function cliclic_inscription_ok()
{
	if (form_mode_valid_ok(0) != 0)
	{
		document.form_mode_valid.action = document.form_mode_valid.action + "?suite_devis=preinscription_ok" + "#devis"  ;
		document.form_mode_valid.submit() ;
	}
}

//--------------------------------------------------------------------------------------------------------








