home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------
- // GLOSSARY FUNCTIONS
- //----------------------------------------------------------------
-
- // used by glonav to choose the selected letter.
- function openSelectedLetter() {
- chosenLetterNdx = document.forms[0].contents.selectedIndex
- chosenLetter = document.forms[0].contents.options[chosenLetterNdx].value
-
- //load the word list in the proper frame
- parent.wordlist.location = "wordlist/" + chosenLetter + 'words.htm'
- // load the first word in the definition frame
- parent.definition.location = "words/" + chosenLetter + "words/" + chosenLetter + '1.htm'
- }
-
-