         function getWord ( thisWord )
         {
           document.getWordForm.word.value = thisWord ;
           document.getWordForm.submit() ;
         }

         function getList ( thisLetter )
         {
           document.getListForm.letter.value = thisLetter ;
           document.getListForm.submit() ;
         }

         function getWordInList ( thisLetter, thisId )
         {
           document.getWordInListForm.letter.value = thisLetter ;
           document.getWordInListForm.idNo.value = thisId ;  //funktioniert nicht!!
           document.getWordInListForm.submit();
         }

         function listAll ()
         {
           document.listAllForm.listAll.value = "yes";
           document.listAllForm.submit();
         }

         function listAllDetails ()
         {
           document.listAllDetailsForm.listAllDetails.value = "yes";
           document.listAllDetailsForm.submit();
         }


