/**
 *	Fonction qui vvérifie que les champs soient bien renseignés lors du clic sur la carte de la région pour une rencontre individuelle
 */
function validationSaisie()
{
	var typeRadio = document.getElementsByName("radioChoixType");
										
	if (typeRadio[0].checked == false && typeRadio[1].checked == false)
	{
		alert("Veuillez choisir un type de recherche (par metier ou par domaine)");
		return;
	}
	
	if (typeRadio[0].checked == true)
		var ajoutUrl = "&metier="+document.getElementById("libelleMetier").value;
	if (typeRadio[1].checked == true)
		var ajoutUrl = "&domaine="+document.getElementById("radioChoixType").options[document.getElementById("radioChoixType").options.selectedIndex].value;
	window.location.href = "index.php?id=114"+ $ajoutUrl;
}



/**
 *	Fonction qui vvérifie que les champs soient bien renseignés lors du clic sur la carte de la région pour une rencontre individuelle
 */
function validateRegion(idRegion, idPage)
{
	var typeRadio = document.getElementsByName("radioChoixType");
										
	if (typeRadio[0].checked == false && typeRadio[1].checked == false)
	{
		alert("Veuillez choisir un type de recherche (par metier ou par domaine)");
		return;
	}
	
	
	if (typeRadio[0].checked == true)
	{
		if (document.getElementById("libelleMetier").value == "")
		{
			alert("Veuillez saisir un metier");
			return;
		}
		
		var ajoutUrl = "&metier="+document.getElementById("libelleMetier").value;
	}
	if (typeRadio[1].checked == true)
	{
		var choixListe = document.getElementById("selectDomainePro").options[document.getElementById("selectDomainePro").options.selectedIndex].value;
		var ajoutUrl = "&domaine="+ choixListe;
	}
	
	window.location.href = "index.php?id="+ idPage + "&departement="+ idRegion + ajoutUrl;
}


/**
 *	Coche automatiquement la bonne checkbox selon le type de recherche (choisissez un métier / choisissez un domaine professionnel)
 */
function cocheCheckbox(nb)
{
	var typeRadio = document.getElementsByName("radioChoixType");
	typeRadio[nb].checked = true;
}