function showHiddenDescription(obj, spanId) {
obj.style.display = "none";
var doc = document.getElementById(spanId);
if (doc != null) {
doc.style.display = "inline";}}
