function openLink(obj,path,from,to)
{
var array = new Array();
var tag=0;
array.push("lhi-career.langhamhotels.com");
array.push("lhi-career.langhamhotels.com.cn");

//array.push("en.welkin-multimedia.com");
//array.push("cn.welkin-multimedia.com");

document.getElementById("languageshow").innerText=obj;
var currentStr = window.location.href;
var u = currentStr.split("/");



if(path==""){
	currentStr = "http://"+path+"/";
	currentStr += to+"/";
	currentStr +="index.html";
	currentStr = currentStr.replace("/"+from+"/","/"+to+"/");
}else{
//	u[2] = "lhi-career.langhamhotels.com";
	if(u[2]=="lhi-career.langhamhotels.com"||u[2]=="lhi-career.langhamhotels.com.cn"){
//}else{if(u[2]=="en.welkin-multimedia.com"||u[2]=="cn.welkin-multimedia.com"){
		for(var j=0;j<array.length;j++){
			if(path==array[j]){
				tag=1;
			}
		}
		if(tag==1){
			currentStr = "http://"+path+"/";
			for(var i=3;i<u.length;i++){
				if(i!=u.length-1){
					currentStr +=u[i]+"/";
				}else{
					currentStr +=u[i];}
				}
			currentStr = currentStr.replace("/"+from+"/","/"+to+"/");
		}else{
	
			currentStr = "http://"+path+"/";
			currentStr += to+"/";
			currentStr +="index.html";
			currentStr = currentStr.replace("/"+from+"/","/"+to+"/");
		}

	}else{

		for(var j=0;j<array.length;j++){
			if(path==array[j]){
				tag=1;
			}
		}
		if(tag==1){
			currentStr = currentStr.replace("/"+from+"/","/"+to+"/");
			currentStr = currentStr.replace("folder="+from, "folder="+to);
			currentStr = currentStr.replace(from+".",to+".");
		}else{
			currentStr = "http://"+path+"/";
			currentStr += to+"/";
			currentStr +="index.html";
			currentStr = currentStr.replace("/"+from+"/","/"+to+"/");
		}
	}
}

document.getElementById(to).href= currentStr;
}
