<b><u onclick="HideIt(1)" style="cursor: pointer;">Комментарий (<b id="show1">показать</b>)</u></b> <br><div id="1" style="display: none;">...<a name="LINK"></a>ЦЕЛЬ...</div>
<a href="path#LINK" onclick="HideIt(1)" target="main">ссылка</a>
function HideIt (value) { var e = document.getElementById(value); var c = "show"+value; var txt = document.getElementById(c); if (!document.getElementById(value).shown) { e.shown = true; e.style.display = 'block'; if (value>99) txt.innerHTML = "Скрыть" else txt.innerHTML = "скрыть" } else { e.shown = false; e.style.display = 'none'; if (value>99) txt.innerHTML = "Показать" else txt.innerHTML = "показать" } } // .function HideIt