
function ShowAnswer(id,targetonly) {
  var answer = document.getElementById("a"+id);
  if (answer.style.display == "none") {
    answer.style.display = "block";
  } else if (!targetonly) {
    answer.style.display = "none";
  }

  PositionQuote();
}

function PositionQuote() {
}

