home *** CD-ROM | disk | FTP | other *** search
- function menuTit(style, caption)
- {
- document.write("<p class='MnuTitleText",style,"'>");
- document.write(caption);
- document.write("</p>");
- };
-
-
- function menuSubTit(style, caption)
- {
- document.write("<p class='MnuSubTitleText",style,"'>");
- document.write(caption);
- document.write("</p>");
- };
-
-
- function menuItem(style, caption, anchor, target)
- {
- document.write("<p class='MnuItemText",style,"'>");
- document.write("<a href='",anchor,"'");
- if (target != null)
- {
- document.write(" target='",target,"'");
- }
- document.write(">");
- document.write(caption);
- document.write("</a>");
- document.write("</p>");
- };
-
-
-
-
-
- function togleDetailsVis(details, indicator, imgExpand, imgCollapse)
- {
- if (details.style.display == '')
- {
- details.style.display = 'none';
- if (indicator != null)
- { indicator.src = imgExpand; }
- }
- else
- {
- details.style.display='';
- if (indicator != null)
- { indicator.src = imgCollapse; }
- }
-
- }
-
-