home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 December / Chip_2000-12_cd1.bin / tema / amadea / DownloadFiles / GUIDE.CHM / scripts / contents.js
Encoding:
Text File  |  2000-06-09  |  573 b   |  17 lines

  1.  
  2. function contLine(lineClass, lineText, textLength, pgNum, pgNumClass)
  3. {
  4. document.write("<table width=100%><tr>");
  5. document.write("<td align=left width=", textLength, ">");
  6. document.write("<span class=",  lineClass, ">", lineText, "</span>");
  7. document.write("</td><td>");
  8. document.write("<hr size=1>");
  9. document.write("</td><td align=right width=50>");
  10. if (pgNumClass != "")
  11.     document.write("<span class=", pgNumClass,">");
  12. document.write(pgNum);
  13. if (pgNumClass != "")
  14.     document.write("</span>");
  15. document.write("</td>");
  16. document.write("</tr></table>");
  17. };