// JavaScript Document
function hideInlineElement (elementName) {
	var theElement = document.getElementById(elementName);
	if (theElement) {
		theElement.style.display = "none";
	}
}

function showInlineElement (elementName) {
	var theElement = document.getElementById(elementName);
	if (theElement) {
		theElement.style.display = "inline";
	}
}