/***
 * Fonctions qui renvoi l'id pour creation de la fiche contact
***/


function selectIdValue()
{
	// on recupere l'id du contacts
	var id = document.getElementById('formEnvoiMailContact').elements['pays'].options[document.getElementById('formEnvoiMailContact').elements['pays'].selectedIndex].value;
	// on place la valeur dans l'input cacher
	replaceVal(id);

	// on valid le formulaire	
	envoiForm();	
}


function envoiForm()
{
	document.getElementById('invisible').submit();
}


function replaceVal(pVar)
{
	document.getElementById('monIdC').value = pVar;
}

