/*
	This file contains the dcmnr_showHide() function, used to show and/or hide multivalued
	fields in the display.
	
	$Id$
*/


function dcmnr_showHide(shown, hidden) {
  elementToShow = document.getElementById(shown);
  elementToShow.style.display  = 'block';
  document.getElementById(hidden).style.display = 'none';
  elementToShow.parentNode.parentNode.className = elementToShow.parentNode.parentNode.className;
}
