<!--//--><![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';
    }
}
function PopupC(file,width,height) {
  var top=(screen.height-height)/2;
  var left=(screen.width-width)/2;
   window.open(file,"","top="+top+",left="+left+",width="+width+",height="+height+",menubar=no,scrollbars=no,statusbar=no");
 }
