function toggle(id){

 var img = 'img_' + id;
 if(document.getElementById(id).style.display == 'block') {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = 'Scripts/plus.gif';
 } else {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = 'Scripts/minus.gif';
 }

}
