function Scriptloaded()
{
}
var currentopen = "None";

function toggleAllfaq() {
  var sa = document.getElementById("chkViewAll")
  toggleQuestions(sa.checked)
}

function toggleQuestionsfaq(checked) {
  var node, i
  for (i = 1; (node = document.getElementById("question" + i)) != null; i++) {
    var ansrow = node.nextSibling
    while (ansrow.nodeType != 1 || ansrow.tagName != "TR")
      ansrow = ansrow.nextSibling
    ansrow.style.display = checked ? '' : 'none'
    }

}

function togglefaq(src,ans) {
  var node = document.getElementById(src)
  var ansrow = node.nextSibling
  while (ansrow.nodeType != 1 || ansrow.tagName != "TR")
    ansrow = ansrow.nextSibling
  if (ansrow.style.display == '')
    ansrow.style.display = 'none'
  else
    ansrow.style.display = ''
  return false

}
