function currLocation()
{
alert(window.location);
}

function newLocation(n)
{
	switch (n)
	{
	case "chinese":
		window.location="http://www.hkhfa.org/index.html";
		break;
	case "english":
		window.location="http://www.hkhfa.org/indexE.html";
		break;

	case "aboutus":
		window.location="http://www.hkhfa.org/aboutUS_C/aboutus.html";
		break;
	case "news":
		window.location="http://www.hkhfa.org/news_C/aaC.html";
		break;
	case "enquiry":
		window.location="http://www.hkhfa.org/jHKHFA_C/jhkhfaC.html";
		break;
	case "sitemap":
		window.location="http://www.hkhfa.org/sitemap.html";
		break;
	case "links":
		window.location="http://www.hkhfa.org/linkC.html";
		break;
	case "member":
		window.location="http://www.hkhfa.org/memberC/memberC.html";
		break;
		
	case "joinHKHFA":
		window.location="http://www.hkhfa.org/jHKHFA_C/jhkhfaC.html";
		break;
	case "faq":
		window.location="http://www.hkhfa.org/jHKHFA_C/faqC.html";
		break;
	case "enquiry1":
		window.location="http://www.hkhfa.org/jHKHFA_C/enquiryC.html";
		break;
	case "download":
		window.location="http://www.hkhfa.org/jHKHFA_C/downloadC.html";
		break;
	case "healthdata":
		window.location="http://www.hkhfa.org/jHKHFA_C/hrfC.html";
		break;


	default:
		break;
	}

}