function toggle(id){
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  //document.getElementById(img).src = 'img/minus.gif'; 
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  //document.getElementById(img).src = 'img/plus.gif'; 
 }

}

