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 baker () {
	window.open("http://www.centreimage.ch/baker/election/index.html", "BAKER", "width=750,height=450,directories=no,location=no,status=yes,resizable=yes,scrollbars=yes");                
}

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;

