// JavaScript Documentfunction showElement(rootElementName, elementIndex) {	if(document.getElementById(rootElementName + elementIndex).style.display ) {		document.getElementById(rootElementName + elementIndex).style.display = 'block';	}	}	function hideAllElements(rootElementName, elementArraySize) {	for(j=1;j<=elementArraySize;j++) {		if(document.getElementById(rootElementName + j)) {			document.getElementById(rootElementName + j).style.display = 'none';		}	}	}
