function showGamesBasedOnSearch(textToSearch) { termToSearch=show[gg][SERIES_NAME].toLowerCase(); if (termToSearch.indexOf(textToSearch) >= 0) { document.write('

'); document.write(show[gg][GAME_HTML_NAME]); document.write('
'); } } function showBooksBasedOnSearch(textToSearch) { termToSearch=show[gg][SERIES_NAME].toLowerCase(); if (termToSearch.indexOf(textToSearch) != -1) { document.write('

'); document.write(show[gg][BOOK_HTML_NAME]); document.write('
'); } }