protected void getDefinitions(string input, int kindOfDictionary)
        {
            SearchWebService.Term term = null;
            object userid = Session["userid"];

            if (userid != null)
            {
                term = ss.getTermByStringWithUser(kindOfDictionary, input, Convert.ToInt32(userid));
                if (term.ID != -1)
                {
                    divNote.Visible = true;
                    getNote(term);
                }
            }
            else
            {
                term = ss.getTermByString(kindOfDictionary, input);
            }
            showDefinition(term);
        }