function checkAnswer() {
  var answerArray = new Array(
    "No, the language is not calm and objective, but uses terms like 'carte blanche support of the US for Israeli policies' and 'the mess in Iraq'.",
    "Yes, the language is quite emotive with terms like 'damned near as hostile' and 'totally abandoned by their government'.",
    "No, this presents only one side of the debate and the language is emotive.",
    "Not really, despite the use of emotive language, the article presents facts and identifies opinions as such."
  );
  var radioButtons = document.forms['test'].radioGroup;
  for (var m = 0; m < radioButtons.length; m++) {
    if (radioButtons[m].checked) {
      document.forms['test'].whitebox.value = answerArray[radioButtons[m].value];
    }
  }
}