function LanguageRedirect(intLocaleID) { //v1.0

	currentURL = window.location.href;
	
	if (intLocaleID == 4105) { 
		newURL=currentURL.replace("_f.", "_e.");
	} else {
		newURL=currentURL.replace("_e.", "_f.");
	}
	
	location.href=newURL;
}