function search_clicked_word(search_word, search_word_index) {

	// Inserts clicked word into text box
	document.getElementById('search_word_val').value = search_word;

	// Inserts the index of the clicked word
	document.getElementById('search_array_index').value = search_word_index;

	// Initiates search
	document.getElementById('search_button').click();

}
	

