// JavaScript Document

function submitTT()
{
  choices = document.choice_form.elements;
  numElements = choices.length;
  signups = "";
  chName = "";

  for (i = 0; i < numElements; i++) if (choices[i].checked)
  {
    chName = choices[i].name;
    if (chName.length < 4) signups += chName + " ";
    else if (choices[i].value != "0") signups += choices[i].value + " ";
  }

  other_stuff = document.choice_form.other.value;

  if (other_stuff != null && other_stuff.length > 0)
    signups += "\nOTHER:\n" + other_stuff;

  document.tts.signup.value = signups;
  document.tts.submit();
}