function switchLang(status, infopage) {
	var url;
	var filename;
	
	if (status=="ok") {	
		filename =location.pathname.substring(location.pathname.lastIndexOf('\/')+1);
		url=infopage+filename;			
	}
	if (status=="ucchi") {
		url="http://www.drhealthbeauty.com/htm/ucchi.html"
	} 
	if (status=="ucchs") {
		url="http://www.drhealthbeauty.com/htm/ucchs.html"
	} 

	window.location=url;
}

