/**** toggleDiv(divid), hand made for phpinclude page specifically ****/
showl = false;
function toggleDiv(divid) {
  if (showl == false) { showl = true; }
  else { showl = false; }

  if (showl) {
    document.getElementById(divid).style.display = 'block';
    document.getElementById("showlink").innerHTML = "<span><a href=\"javascript:toggleDiv('COPYING');\"><img src='/images/arrows_bupt.gif' width='20' height='20' alt='' border='0'/></a><b> GNU General Public License</b> (<a href=\"javascript:toggleDiv('COPYING');\">Click to hide</a>)</span>";
  } else {
    document.getElementById(divid).style.display = 'none';
    document.getElementById("showlink").innerHTML = "<span><a href=\"javascript:toggleDiv('COPYING');\"><img src='/images/arrows_bdown.gif' width='20' height='20' alt='' border='0'/><b> Click to show full license text</b></a></span>";
  }
}
