home *** CD-ROM | disk | FTP | other *** search
- /********************************************************
- INSIDE THE TUTORIAL PAGES
- ********************************************************/
-
- function BareBonesGuide_1()
- // for the readme.html file at the topmost level
- {
- var handyWin = window.open("other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuide()
- {
- var handyWin = window.open("../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuide1()
- // for pages 1 extra level deep
- {
- var handyWin = window.open("../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuide2()
- // for pages 2 extra levels deep
- {
- var handyWin = window.open("../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuide3()
- // for pages 3 extra levels deep
- {
- var handyWin = window.open("../../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuide4()
- // for pages 4 extra levels deep
- {
- var handyWin = window.open("../../../../../other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
-
-
-
-
-
- /********************************************************
- OUTSIDE THE TUTORIAL PAGES
- ********************************************************/
-
- function BareBonesGuideOther()
- // for pages 0 levels deep and outside the tutorial page
- {
- var handyWin = window.open("tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuideOther1()
- // for pages 1 level deep and outside the tutorial page
- {
- var handyWin = window.open("../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuideOther2()
- // for pages 2 levels deep and outside the tutorial page
- {
- var handyWin = window.open("../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuideOther3()
- // for pages 3 levels deep and outside the tutorial page
- {
- var handyWin = window.open("../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuideOther4()
- // for pages 4 levels deep and outside the tutorial page
- {
- var handyWin = window.open("../../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- function BareBonesGuideOther5()
- // for pages 5 levels deep and outside the tutorial page
- {
- var handyWin = window.open("../../../../../tutor/other/barebone/barebone.html", "displayWindow", "menubar=no,scrollbars=yes")
- }
-
-
-
-
-
-
- /********************************************************
- FROM THE TOC PAGE
- - will open the Handy Dandy Font Viewer, the Barebones
- Guide, or ColorPicker depending on what we feed it.
- ********************************************************/
- function TOC_opener(page)
- {
- var handyWin = window.open(page, "displayWindow", "menubar=no,scrollbars=yes")
- }
-
- // The exact same thing except for use outside the TOC
- function GenericOpener(page)
- {
- var handyWin = window.open(page, "displayWindow", "menubar=no,scrollbars=yes")
- }
-
-