//Client name of the bible list control
var BibleListName = null;

var DefinitionList = "Isbe,Eastons,Amtract,Smith,Torrey";

var SelectedWord = "";

var urlWord = null;


function GetUrlWord()
{
  var ShowWords = document.getElementById("WordList");
	if (ShowWords != null)
	{
	  ShowWords.options[0] = new Option(urlWord, urlWord);
    GetWordDefinition();
    
    urlWord = null;
  }
}