function resetallsoundtext(){
  sound1.innerHTML='1. Lets work together';
  sound2.innerHTML='2. I\'m a hog for you baby';
  sound3.innerHTML='3. Going back home';
  sound4.innerHTML='4. Daddy rolling stone';
  sound5.innerHTML='5. Jumping at shadows';
  sound6.innerHTML='6. Little wing';
}

function soundclick(which){
  if (which==1){
    document.f1.submit();
  }
  else if (which==2){
    document.f2.submit();
  }
  else if (which==3){
    document.f3.submit();
  }
  else if (which==4){
    document.f4.submit();
  }
  else if (which==5){
    document.f5.submit();
  }
  else if (which==6){
    document.f6.submit();
  }
}

function soundfinished(which){
  if (which==1){
    sound1.innerHTML='1. Lets work together <font color=red>***Playing***</font>';
  }
  else if (which==2){
    sound2.innerHTML='2. I\'m a hog for you baby <font color=red>***Playing***</font>';
  }
  else if (which==3){
    sound3.innerHTML='3. Going back home <font color=red>***Playing***</font>';
  }
  else if (which==4){
    sound4.innerHTML='4. Daddy rolling stone <font color=red>***Playing***</font>';
  }
  else if (which==5){
    sound5.innerHTML='5. Jumping at shadows <font color=red>***Playing***</font>';
  }
  else if (which==6){
    sound6.innerHTML='6. Little wing <font color=red>***Playing***</font>';
  }
}
