// Explanation of how the search section works (as it is NOT quite like most things Google) as part of the getEvents function:
// {search: 'word1'} Search for events with word1
// {search: '-word1'} Search for events without word1
// {search: '-word1 word2'} Search for events with word2 ONLY
// {search: 'word1 -word2'} Search for events without word2
// {search: 'word1+word2'} Search for events with word1 AND word2
// {search: 'word1+-word2'} Search for events with word1 AND without word2
// {search: '-word1+-word2'} Search for events without word1 AND without word2 (I find this to work logically like an 'OR' statement)