private void lbl_Click(object sender, EventArgs e)
        {
            Label lbl = (Label)sender;

            switch (lbl.Tag.ToString())
            {
            case "01":
                theMainBase.SendCard(this);
                break;

            case "02":
                theMainBase.AddMoney(this);
                break;

            case "03":
                theMainBase.BespeakRegister(this);
                break;

            case "04":
                theMainBase.BespeakSignIn(this);
                break;

            case "05":
                theMainBase.Charge(this);
                break;

            case "06":
                theMainBase.AutoPrint(this);
                break;

            case "07":
                theMainBase.AutoQuery(this);
                break;

            case "08":    //医技预约
                theMainBase.MedicalReserve(this);
                break;

            case "09":    //住院预交金充值
                theMainBase.AddInHosMoney(this);
                break;

            case "10":    //门诊预存转住院预存
                theMainBase.MoneyTransfer(this);
                break;

            case "11":
                theMainBase.InHosAdvanceRecord(this);
                break;

            case "12":
                theMainBase.InHosCostRecord(this);
                break;

            case "13":
                theMainBase.LeaveHosCostPrint(this);
                break;

            case "14":    //补卡
                theMainBase.ReissueCard(this);
                break;

            case "15":
                theMainBase.PrintListReport(this);
                break;

            case "96":    //院内导航
                theMainBase.hosGps(this);
                break;

            case "97":    //订餐
                theMainBase.foodOrder(this);
                break;

            case "98":    //满意度调查
                theMainBase.SurveyInfo(this);
                break;

            case "99":
                theMainBase.ExitCard();
                break;

            case "101":
                theMainBase.Electronics(this);
                break;
            }

            if (SkyComm.cardInfoStruct.isIdentityCard)
            {
                SkyComm.ClearCookie();
            }
        }