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


