/*
function showMemberShipLoin(sLang){
    if (sLang == "C")
     {
		 window.open("MemberShipLogin_cn.htm",null,"height=280,width=650,status=no,toolbar=no,menubar=no,location=no");
     }
    else
    {
         window.open("MemberShipLogin_en.htm",null,"height=280,width=650,status=no,toolbar=no,menubar=no,location=no");
 
	}//end if 
}
*/
function showMemberShipLoin(sLang){
	var v_userid, v_psw
	with(document.forms[0]){
		v_userid = userLogin.value;
		v_pswd = passwordLogin.value
		if (v_userid==""|| v_pswd=="")
		{
			if (sLang == "C")
					alert("登入名稱和密碼不能為空，請輸入登入名稱和密碼！");
			else
					alert("User ID and Password can not be empty, please input your UserID and Password!");			
			return false;  	 
		}
		
		
		if (sLang == "C")
			document.forms[0].action = "doctor_list_cn.aspx";
		else			
			document.forms[0].action = "doctor_list_en.aspx";

		document.forms[0].submit();
		/*
		if (sLang == "C")
		{
			window.location = "doctor_list_cn.aspx?userid=" + encodeURI(v_userid) + "&pswd=" + encodeURI(v_pswd);
		}
		else
		{
			window.location = "doctor_list_en.aspx?userid=" + encodeURI(v_userid) + "&pswd=" + encodeURI(v_pswd);
	 
		}//end if 
		*/
	}

}
 
