summaryrefslogtreecommitdiff
path: root/root/toggle_details
blob: f2095d29b825306dbecb203c2d28c1714e8af07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <script type="text/javascript">
   // <!--
   function toggle_details(linkid) {
    var theDiv=$('link_details_' + linkid);
    var theButton=$('link_toggle_' + linkid);
    if (theDiv.style.display == 'none') {
      Effect.SlideDown(theDiv);
      theButton.textContent='^';
    }
    else {
      Effect.SlideUp(theDiv);
      theButton.textContent='V';
    }
    return false;
   }
   // -->
  </script>