function ToggleAnswer(id) {
  var question = document.getElementById('q'+id);
  var answer   = document.getElementById('a'+id);
  if (question.className == 'hide') {
    question.className = 'show';
    answer.className   = 'show';
    var r = Math.round(Math.random()*999); // added to query string to prevent caching
    document.getElementById("countview").src = 'countview_faq.php?r='+r+'&id='+id;
  } else {
    question.className = 'hide';
    answer.className   = 'hide';
  }
}