//Calls search on LibraryData
    public void PerformSearch()
    {
        //prevent NullError
        if (rawKeywords == "")
        {
            return;
        }

        string[]    keys   = ParseRawKeywords(rawKeywords);
        List <Book> result = libData.Search(keys);

        DisplayResult(result);
    }