function redirectionCanton(adr_site,select_canton)
{
	//alert(adr_site);
	//alert(select_canton);
	//alert(adr_site+'canton-'+select_canton+'.html');
	if(select_canton != '0')
	{
		var url = adr_site+'canton-'+select_canton+'.html';
		window.location.replace(url);
	}
	else window.document.getElementById('choix_commune').disabled = 'true';
}

function redirectionCommune(adr_site,select_canton,select_commune)
{
	//alert(adr_site);
	//alert(select_canton);
	//alert(adr_site+'canton-'+select_canton+'.html');
	if(select_canton != '0')
	{
		var url = adr_site+'canton-'+select_canton+'.html';
		window.location.replace(url);
	}
	else window.document.getElementById('choix_commune').disabled = 'true';
}