function switchlangue(Id){
	var adresse = location.href;
	var n  = adresse.length;
	var ok = true;
	var cnt = 0;
	var adresse2 ="" ;
	for (var i=0; i<n; i++) {
		if (adresse.charAt(i)=='&') {
			adresse2 += "|";
		}
		else {
			adresse2 += adresse.charAt(i);
		};
	};
	var hosturl
	if (window.location.host == "www.canardsetcadeaux.com")
	{
		hosturl = "www.ducksandgifts.com"
		
		}
	else
	{
		hosturl = "www.canardsetcadeaux.com"
		}

	 //document.location.href = adresse2
	window.location = "http://"+hosturl;
};