<!--//--><![CDATA[//><!-- 
function changelinks() {
  for (i = 0; i < document.links.length; i++) {
    if (document.links[i].getAttribute('class') == 'newwindow'
      || document.links[i].className == 'newwindow') {
      document.links[i].setAttribute('target', '_blank');
    }
  }
}
window.onload = changelinks;
//--><!]]>

function toggleItem(box) {
    if (document.getElementById('info_'+box).style.display == 'none') {
        document.getElementById('info_'+box).style.display = 'block';
    } else {
        document.getElementById('info_'+box).style.display = 'none';
    }
}