// You can find instructions for this file here:
// http://www.treeview.net

// Decide if the names are links or just the icons
USETEXTLINKS = 1  //replace 0 with 1 for hyperlinks

// Decide if the tree is to start all open or just showing the root folders
//STARTALLOPEN = 0 // replace 0 with 1 to show the whole tree
var queryStr = window.location.search.substr(1)
queryStr=unescape(queryStr)
if (queryStr) 
	STARTALLOPEN = 1
else
	STARTALLOPEN = 0

ICONPATH = '../.style/' //if the gif's folder is a subfolder, for example: 'images/'

// Decide if the tree is to to be shown on a separate frame of its own
USEFRAMES = 0

// Remove the folder and link icons and keep only the +/- icons
USEICONS = 1

// Make the folder and link labels wrap into multiple lines
WRAPTEXT = 0

// Folders reopen toprevious state across page loads
PERSERVESTATE = 0

foldersTree = gFld("目錄索引", "../menuindex.htm")
	auxbegin1 = insFld(foldersTree, gFld("硬體準備", "./01.htm"))
		insDoc(auxbegin1, gLnk("S","CPU 與 RAM", "./01.htm#01"))
		insDoc(auxbegin1, gLnk("S", "硬碟控制卡與硬碟", "./01.htm#02"))
		insDoc(auxbegin1, gLnk("S", "軟碟機", "./01.htm#03"))
		insDoc(auxbegin1, gLnk("S", "光碟機與網路卡", "./01.htm#04"))
		insDoc(auxbegin1, gLnk("S", "顯示卡與螢幕", "./01.htm#05"))
	auxbegin2 = insFld(foldersTree, gFld("硬碟分割淺釋", "./02.htm"))
		insDoc(auxbegin2, gLnk("S", "磁碟分割表 (Disk Partition)", "./02.htm#01"))
		insDoc(auxbegin2, gLnk("S", "磁碟標韱 (Disk Label)", "./02.htm#02"))
	auxbegin3 = insFld(foldersTree, gFld("多重開機管理員", "./03.htm"))
		insDoc(auxbegin3, gLnk("S", "Boot Easy", "./03.htm#01"))
		insDoc(auxbegin3, gLnk("S", "Grub", "./03.htm#02"))
		insDoc(auxbegin3, gLnk("S", "SPFdisk", "./03.htm#03"))
	insDoc(foldersTree, gLnk("S","啟動磁區的限制", "./04.htm"))

