	var language = getCookie("LCHCLanguage");
	//alert(language);
	if (language == "en") 
	{
		//alert(location.href.substring(0,location.href.lastIndexOf(".")));
		var lastdot = location.href.lastIndexOf(".");
		var indextest = location.href.substring(lastdot, lastdot+3);
		// alert (indextest);
		if (indextest == "org" || indextest == "com") location.replace(location.href.substring(0,lastdot+4) + "/");
		else location.replace(location.href.substring(0,lastdot-3) + ".html");
	}
