<!--
document.write ("<style type=\"text/css\"> .txtLessText, .txtLess, .txtMore { visibility: visible; display: inline; } </style>");
//-->

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