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