function LanguageRedirect(intLocaleID) {
// 4105 = French to Englis, 3084 = Enlish to French
						currentURL = window.location.href;
						if (intLocaleID == 4105) { 
												location.href=currentURL.replace("_f.", "_e.");
						} else {
												location.href=currentURL.replace("_e.", "_f.");
						}
}

