function change(lang){
	var href=document.location.href;
	if(lang=="en")
		href=href.replace("/tc/","/en/");
		if(href.indexOf("sc.youth.gov.hk/TuniS/")!=-1)
			href=href.replace("sc.youth.gov.hk/TuniS/","");
	else if (lang=="tc")
		href=href.replace("/en/","/tc/");
		if(href.indexOf("sc.youth.gov.hk/TuniS/")!=-1)
			href=href.replace("sc.youth.gov.hk/TuniS/","");
	else if (lang=="sc"){
		href=href.replace("/en/","/tc/");
		if(href.indexOf("sc.youth.gov.hk/TuniS/")==-1){
			href=href.replace("http://sc.youth.gov.hk/TuniS/","http://sc.youth.gov.hk/TuniS/");
			href=href.replace("https://sc.youth.gov.hk/TuniS/","https://sc.youth.gov.hk/TuniS/");
		}
		else
			href=href.replace("sc.youth.gov.hk/TuniS/","");
	}
	document.location.href=href;
}