home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 November / PCWorld_1999-11_cd.bin / Software / Servis / WebTutor / other / central_scripting.js < prev    next >
Text File  |  1999-09-30  |  3KB  |  106 lines

  1. /********************************************************
  2.    INSIDE THE TUTORIAL PAGES
  3.  ********************************************************/
  4.  
  5. function BareBonesGuide_1()
  6. // for the readme.html file at the topmost level
  7. {
  8.    var handyWin = window.open("other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  9. }
  10.  
  11. function BareBonesGuide()
  12. {
  13.    var handyWin = window.open("../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  14. }
  15.  
  16. function BareBonesGuide1()
  17. // for pages 1 extra level deep
  18. {
  19.    var handyWin = window.open("../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  20. }
  21.  
  22. function BareBonesGuide2()
  23. // for pages 2 extra levels deep
  24. {
  25.    var handyWin = window.open("../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  26. }
  27.  
  28. function BareBonesGuide3()
  29. // for pages 3 extra levels deep
  30. {
  31.    var handyWin = window.open("../../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  32. }
  33.  
  34. function BareBonesGuide4()
  35. // for pages 4 extra levels deep
  36. {
  37.    var handyWin = window.open("../../../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  38. }
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. /********************************************************
  46.    OUTSIDE THE TUTORIAL PAGES
  47.  ********************************************************/
  48.  
  49. function BareBonesGuideOther()
  50. // for pages 0 levels deep and outside the tutorial page
  51. {
  52.    var handyWin = window.open("tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  53. }
  54.  
  55. function BareBonesGuideOther1()
  56. // for pages 1 level deep and outside the tutorial page
  57. {
  58.    var handyWin = window.open("../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  59. }
  60.  
  61. function BareBonesGuideOther2()
  62. // for pages 2 levels deep and outside the tutorial page
  63. {
  64.    var handyWin = window.open("../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  65. }
  66.  
  67. function BareBonesGuideOther3()
  68. // for pages 3 levels deep and outside the tutorial page
  69. {
  70.    var handyWin = window.open("../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  71. }
  72.  
  73. function BareBonesGuideOther4()
  74. // for pages 4 levels deep and outside the tutorial page
  75. {
  76.    var handyWin = window.open("../../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  77. }
  78.  
  79. function BareBonesGuideOther5()
  80. // for pages 5 levels deep and outside the tutorial page
  81. {
  82.    var handyWin = window.open("../../../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
  83. }
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90. /********************************************************
  91.    FROM THE TOC PAGE
  92.     - will open the Handy Dandy Font Viewer, the Barebones
  93.       Guide, or ColorPicker depending on what we feed it.   
  94.  ********************************************************/
  95. function TOC_opener(page)
  96. {
  97.    var handyWin = window.open(page, "displayWindow", "menubar=no,scrollbars=yes")
  98. }
  99.  
  100. // The exact same thing except for use outside the TOC
  101. function GenericOpener(page)
  102. {
  103.    var handyWin = window.open(page, "displayWindow", "menubar=no,scrollbars=yes")
  104. }
  105.  
  106.