
function reload() {
  location.href="main.html";
}


//I never put this in the program -- not enough time.  It would pop up and give people easy access to type in sounds.

function startPopup(){
  var word= '';
  var cont = true;
  var promptStr ='Please type in a word to add to the Favoriteslist and press OK.  \nPress Cancel to stop entering in words';
  while (cont) {
    word = prompt(promptStr,'');
    if (word==null || word.length ==0) {cont=false;} else
      {intoFavoriteslist(word);}
  }
}

