var chosen = false;

function hideForm()
{
  if(chosen == true)
  {
    $('tc_form_div').hide();
    $('tc_button_div').hide();
    $('tc_success_div').style.display = "block";
  }
}

function setChosen()
{
  chosen = true;
}