function ShowText (el, text)
{
	//el.childNodes[0].nodeValue = el.childNodes[0].nodeValue + "( " + text + " ) ";
	el.innerHTML = el.childNodes[0].nodeValue + " <strong>( " + text + " )</strong>";
}