// JavaScript Document

//Fonction pour changer de pays

function country_1()
{
	numOption = document.changelanguage.elements["locale"].selectedIndex;
	valeurChoix = document.changelanguage.elements["locale"].options[numOption].value;
	
	if (valeurChoix != ""){
		//alert(window.location.href);
		window.location.href = "index.php?L="+valeurChoix;
	}
}



