// JavaScript Document

function showInline (Name) {
	var theElemenet = document.getElementById(Name);
	if (theElemenet) {
		theElemenet.style.display = "inline";
	}
}
function hideInline (Name) {
	var theElemenet = document.getElementById(Name);
	if (theElemenet) {
		theElemenet.style.display = "none";
	}
}

