<!--
// Build the netui_names table to map the tagId attributes
// to the real id written into the HTML
if (netui_names == null)
   var netui_names = new Object();
netui_names.id_champ_research="header_internal_page_kompass{actionForm.userParameterSearch}"
// method which will return a real id for a tagId,
// the tag parameter will be used to find the idScope for
// containers that may scope their ids
function getNetuiTagName(id, tag)
{
   var idScope = getScopeId(tag);
   if (idScope == "")
      return netui_names[id];
   else
      return netui_names[idScope  + "__" + id];
}

// This method will walk the hierarchy from the pass element looking for a idScope.
// The first idScope found will be returned or the empty string if a idScope is not found.
function getScopeId(tag)
{
   if (tag == null || tag.getAttribute == null)
      return "";
   try {
      var attrVal = tag.getAttribute("netui:idScope");
   } catch (e) { /* ignore, in IE6 calling on a table results in an exception */ }
   if (attrVal != null)
      return attrVal;
   return getScopeId(tag.parentNode);
}

-->
