function expandContract(div) {
      oDiv = document.getElementById(div);   

      if (oDiv.style.height != '') {
         oDiv.style.height = '';
	 oDiv.style.visibility = 'visible';
      } else {
         oDiv.style.height = '1px';
	 oDiv.style.visibility = 'hidden';
      }
                                    
}
