function toggleDiv(theLink,divID){
  theDiv = document.getElementById(divID);
  if(theDiv.style.display!='none'){
	theDiv.style.display = 'none';
  } else {
	theDiv.style.display = 'block';
  }
}