Made with Tripod.com
\n"); outputFrame.write("\n"); outputFrame.write(prefixHTML + "\n\n"); if (treeData[1].target == "") {var targetFrame = defaultTargetFrame} else {var targetFrame = treeData[1].target} if (treeData[1].icon == "") {var imageString = defaultImageURL + 'img-globe-' + structureStyle + '.gif'} else {imageString = defaultImageURL + treeData[1].icon} outputFrame.write("" + treeData[1].url + " " + treeData[1].name + "
\n"); drawBranch("root",""); outputFrame.write("
\n" + suffixHTML + "\n"); outputFrame.write("
\n\n"); outputFrame.close(); } function drawBranch(startNode,structureString) { var children = extractChildrenOf(startNode); var currentIndex = 1; while (currentIndex <= children.length) { outputFrame.write(structureString); if (children[currentIndex].type == 'link') { if (children[currentIndex].icon == "") { var imageString = defaultImageURL + defaultLinkIcon; } else {var imageString = defaultImageURL + children[currentIndex].icon} if (children[currentIndex].target == "") { var targetFrame = defaultTargetFrame; } else {var targetFrame = children[currentIndex].target} if (currentIndex != children.length) { outputFrame.write("") } else { outputFrame.write("") } outputFrame.write("" + children[currentIndex].url + " " + children[currentIndex].name + "
\n") } else { var newStructure = structureString; if (children[currentIndex].iconClosed == "") {var iconClosed = "img-folder-closed-" + structureStyle + ".gif"} else {var iconClosed = children[currentIndex].iconClosed} if (children[currentIndex].iconOpen == "") {var iconOpen = "img-folder-open-" + structureStyle + ".gif"} else {var iconOpen = children[currentIndex].iconOpen} if (currentIndex != children.length) { if (children[currentIndex].open == 0) { outputFrame.write("Click to open this folder") outputFrame.write("Click to open this folder " + children[currentIndex].name + "
\n") } else { outputFrame.write("Click to close this folder"); outputFrame.write("Click to close this folder " + children[currentIndex].name + "
\n"); newStructure = newStructure + ""; drawBranch(children[currentIndex].id,newStructure); } } else { if (children[currentIndex].open == 0) { outputFrame.write("Click to open this folder") outputFrame.write("Click to open this folder " + children[currentIndex].name + "
\n") } else { outputFrame.write("Click to close this folder"); outputFrame.write("Click to close this folder " + children[currentIndex].name + "
\n"); newStructure = newStructure + ""; drawBranch(children[currentIndex].id,newStructure); } } } currentIndex++; } } function toggleFolder(id,status) { var nodeIndex = indexOfNode(id); treeData[nodeIndex].open = status; timeOutId = setTimeout("drawTree()",100)} function indexOfNode(id) { var currentIndex = 1; while (currentIndex <= treeData.length) { if ((treeData[currentIndex].type == 'root') || (treeData[currentIndex].type == 'folder')) { if (treeData[currentIndex].id == id) {return currentIndex}} currentIndex++} return -1} function extractChildrenOf(node) { var children = new Collection(); var currentIndex = 1; while (currentIndex <= treeData.length) { if ((treeData[currentIndex].type == 'folder') || (treeData[currentIndex].type == 'link')) { if (treeData[currentIndex].parent == node) { children.add(treeData[currentIndex])}} currentIndex++} return children} function Collection() { this.length = 0; this.add = add; return this} function add(object) { this.length++; this[this.length] = object} function RootNode(id,name,url,target,icon) { this.id = id; this.name = name; this.url = url; this.target = target; this.icon = icon; this.type = 'root'; return this} function FolderNode(id,parent,name,iconClosed,iconOpen) { this.id = id; this.parent = parent; this.name = name; this.iconClosed = iconClosed; this.iconOpen = iconOpen; this.type = 'folder'; this.open = 0; return this} function LinkNode(parent,name,url,target,icon) { this.parent = parent; this.name = name; this.url = url; this.target = target; this.icon = icon; this.type = 'link'; return this} function loadData() { treeData = new Collection(); treeData.add(new RootNode('root','Kittara Home','http://members.tripod.com/~Kittara/index.htm','_top','')); treeData.add(new FolderNode('Sweden','root','Sweden','','')); treeData.add(new LinkNode('Sweden','Introduction','sweden/sweden.htm','','')); treeData.add(new LinkNode('Sweden','The Swedish Language','sweden/lang.htm','','')); treeData.add(new FolderNode('Swedish Land','Sweden','Swedish Land','','')); treeData.add(new LinkNode('Swedish Land','The Land','sweden/land.htm','','')); treeData.add(new LinkNode('Swedish Land','Surface Features','sweden/land.htm#Surface Features','','')); treeData.add(new LinkNode('Swedish Land','Climate','sweden/land.htm#Climate','','')); treeData.add(new LinkNode('Swedish Land','Rivers and Lakes','sweden/land.htm#Rivers and Lakes','','')); treeData.add(new LinkNode('Swedish Land','Canals','sweden/land.htm#Canals','','')); treeData.add(new LinkNode('Swedish Land','Natural Vegetation','sweden/land.htm#Natural Vegetation','','')); treeData.add(new LinkNode('Swedish Land','Fauna','sweden/land.htm#Fauna','','')); treeData.add(new FolderNode('Swedish People','Sweden','Swedish People','','')); treeData.add(new LinkNode('Swedish People','The People','sweden/people.htm','','')); treeData.add(new LinkNode('Swedish People','Population','sweden/people.htm#Population','','')); treeData.add(new LinkNode('Swedish People','Ethnic Composition and Language','sweden/people.htm#Ethnic Composition and Language','','')); treeData.add(new LinkNode('Swedish People','Religion','sweden/people.htm#Religion','','')); treeData.add(new LinkNode('Swedish People','Urbanization','sweden/people.htm#Urbanization','','')); treeData.add(new FolderNode('Swedish Government And Politics','Sweden','Swedish Government And Politics','','')); treeData.add(new LinkNode('Swedish Government And Politics','Government And Politics','sweden/govern.htm','','')); treeData.add(new LinkNode('Swedish Government And Politics','National Government','sweden/govern.htm#National Government','','')); treeData.add(new LinkNode('Swedish Government And Politics','Local Government','sweden/govern.htm#Local Government','','')); treeData.add(new LinkNode('Swedish Government And Politics','Political Parties','sweden/govern.htm#Political Parties','','')); treeData.add(new LinkNode('Swedish Government And Politics','Legal Systems','sweden/govern.htm#Legal Systems','','')); treeData.add(new LinkNode('Swedish Government And Politics','Foreign Policy','sweden/govern.htm#Foreign Policy','','')); treeData.add(new LinkNode('Swedish Government And Politics','Armed Forces','sweden/govern.htm#Armed Forces','','')); treeData.add(new FolderNode('Swedish Economy','Sweden','Swedish Economy','','')); treeData.add(new LinkNode('Swedish Economy','Economy','sweden/economy.htm','','')); treeData.add(new LinkNode('Swedish Economy','Economic Regions','sweden/economy.htm#Economic Regions','','')); treeData.add(new LinkNode('Swedish Economy','Ownership','sweden/economy.htm#Ownership','','')); treeData.add(new LinkNode('Swedish Economy','National Product','sweden/economy.htm#National Product','','')); treeData.add(new LinkNode('Swedish Economy','Agriculture','sweden/economy.htm#Agriculture','','')); treeData.add(new LinkNode('Swedish Economy','Mining','sweden/economy.htm#Mining','','')); treeData.add(new LinkNode('Swedish Economy','Forestry','sweden/economy.htm#Forestry','','')); treeData.add(new LinkNode('Swedish Economy','Energy','sweden/economy.htm#Energy','','')); treeData.add(new LinkNode('Swedish Economy','Transportation','sweden/economy.htm#Transportation','','')); treeData.add(new LinkNode('Swedish Economy','Foreign Trade','sweden/economy.htm#Foreign Trade','','')); treeData.add(new LinkNode('Swedish Economy','Currency and Banking','sweden/economy.htm#Currency and Banking','','')); treeData.add(new LinkNode('Swedish Economy','Public Finance','sweden/economy.htm#Public Finance','','')); treeData.add(new FolderNode('Swedish Society','Sweden','Swedish Society','','')); treeData.add(new LinkNode('Swedish Society','Society','sweden/society.htm','','')); treeData.add(new LinkNode('Swedish Society','Standard Of Living','sweden/society.htm#Standard Of Living','','')); treeData.add(new LinkNode('Swedish Society','Ways of Life','sweden/society.htm#Ways of Life','','')); treeData.add(new LinkNode('Swedish Society','Religious Life and Institutions','sweden/society.htm#Religious Life and Institutions','','')); treeData.add(new LinkNode('Swedish Society','Labor Movement','sweden/society.htm#Labor Movement','','')); treeData.add(new LinkNode('Swedish Society','Popular Movements','sweden/society.htm#Popular Movements','','')); treeData.add(new LinkNode('Swedish Society','Position of Women','sweden/society.htm#Position of Women','','')); treeData.add(new LinkNode('Swedish Society','Social Welfare','sweden/society.htm#Social Welfare','','')); treeData.add(new FolderNode('Swedish Cultural Life','Sweden','Swedish Cultural Life','','')); treeData.add(new LinkNode('Swedish Cultural Life','Cultural Life','sweden/cultural.htm','','')); treeData.add(new LinkNode('Swedish Cultural Life','Education','sweden/cultural.htm#Education','','')); treeData.add(new LinkNode('Swedish Cultural Life','Literature and Drama','sweden/cultural.htm#Literature and Drama','','')); treeData.add(new LinkNode('Swedish Cultural Life','Music and Opera','sweden/cultural.htm#Music and Opera','','')); treeData.add(new LinkNode('Swedish Cultural Life','Art and Architecture','sweden/cultural.htm#Art and Architecture','','')); treeData.add(new LinkNode('Swedish Cultural Life','Film-making','sweden/cultural.htm#Film-making','','')); treeData.add(new LinkNode('Swedish Cultural Life','Museums and Libraries','sweden/cultural.htm#Museums and Libraries','','')); treeData.add(new LinkNode('Swedish Cultural Life','Radio and the Press','sweden/cultural.htm#Radio and the Press','','')); treeData.add(new LinkNode('Swedish Cultural Life','Recreation','sweden/cultural.htm#Recreation','','')); treeData.add(new LinkNode('Swedish Cultural Life','Holidays and Festivals','sweden/cultural.htm#Holidays and Festivals','','')); treeData.add(new FolderNode('Swedish Literature','Sweden','Swedish Literature','','')); treeData.add(new LinkNode('Swedish Literature','Swedish Literature','sweden/literat.htm','','')); treeData.add(new LinkNode('Swedish Literature','The Age of Enlightenment','sweden/literat.htm#The Age of Enlightenment','','')); treeData.add(new LinkNode('Swedish Literature','Realism, Naturalism, and Neoromanticism','sweden/literat.htm#Realism, Naturalism, and Neoromanticism','','')); treeData.add(new LinkNode('Swedish Literature','The 20th Century','sweden/literat.htm#The 20th Century','','')); treeData.add(new FolderNode('Swedish History','Sweden','Swedish History','','')); treeData.add(new LinkNode('Swedish History','History','sweden/history.htm','','')); treeData.add(new LinkNode('Swedish History','Prehistoric Times','sweden/history.htm#Prehistoric Times','','')); treeData.add(new LinkNode('Swedish History','The Viking Age','sweden/history.htm#The Viking Age','','')); treeData.add(new LinkNode('Swedish History','The Early Middle Ages','sweden/history.htm#The Early Middle Ages','','')); treeData.add(new LinkNode('Swedish History','The 14th Century','sweden/history.htm#The 14th Century','','')); treeData.add(new LinkNode('Swedish History','Union of Kalmar','sweden/history.htm#Union of Kalmar','','')); treeData.add(new LinkNode('Swedish History','Vasa Period','sweden/history.htm#Vasa Period','','')); treeData.add(new LinkNode('Swedish History','Gustavus Adolphus','sweden/history.htm#Gustavus Adolphus','','')); treeData.add(new LinkNode('Swedish History','Queen Christina','sweden/history.htm#Queen Christina','','')); treeData.add(new LinkNode('Swedish History','Charles X','sweden/history.htm#Charles X','','')); treeData.add(new LinkNode('Swedish History','Charles XI','sweden/history.htm#Charles XI','','')); treeData.add(new LinkNode('Swedish History','Great Northern War','sweden/history.htm#Great Northern War','','')); treeData.add(new LinkNode('Swedish History','Era of Liberty','sweden/history.htm#Era of Liberty','','')); treeData.add(new LinkNode('Swedish History','Gustavus III','sweden/history.htm#Gustavus III','','')); treeData.add(new LinkNode('Swedish History','The 19th Century','sweden/history.htm#The 19th Century','','')); treeData.add(new LinkNode('Swedish History','Early 20th Century','sweden/history.htm#Early 20th Century','','')); treeData.add(new LinkNode('Swedish History','World War II and Postwar Era','sweden/history.htm#World War II and Postwar Era','','')); treeData.add(new LinkNode('Swedish History','Integrating with Europe','sweden/history.htm#Integrating with Europe','','')); treeData.add(new FolderNode('Swedish Maps and Pics','Sweden','Swedish Maps and Pics','','')); treeData.add(new LinkNode('Swedish Maps and Pics','Maps And Pictures','sweden/mappics.htm','','')); treeData.add(new FolderNode('Australia','root','Australia','','')); treeData.add(new LinkNode('Australia','Introduction','australia/australia.htm','','')); treeData.add(new FolderNode('Australian Land','Australia','Australian Land','','')); treeData.add(new LinkNode('Australian Land','The Land','australia/land.htm','','')); treeData.add(new LinkNode('Australian Land','Surface Features and Drainage','australia/land.htm#Surface Features and Drainage','','')); treeData.add(new LinkNode('Australian Land','Geological History','australia/land.htm#Geological History','','')); treeData.add(new LinkNode('Australian Land','Natural Regions','australia/land.htm#Natural Regions','','')); treeData.add(new LinkNode('Australian Land','Drainage and Water Supply','australia/land.htm#Drainage and Water Supply','','')); treeData.add(new LinkNode('Australian Land','Climate','australia/land.htm#Climate','','')); treeData.add(new LinkNode('Australian Land','Soils','australia/land.htm#Soils','','')); treeData.add(new FolderNode('Australian People','Australia','Australian People','','')); treeData.add(new LinkNode('Australian People','The People','australia/people.htm','','')); treeData.add(new LinkNode('Australian People','Ethnology','australia/people.htm##Ethnology','','')); treeData.add(new LinkNode('Australian People','Population','australia/people.htm#Population','','')); treeData.add(new LinkNode('Australian People','Religion','australia/people.htm#Religion','','')); treeData.add(new LinkNode('Australian People','Urban Areas','australia/people.htm#Urban Areas','','')); treeData.add(new LinkNode('Australian People','Australian Aborigines','australia/people.htm#Australian Aborigines','','')); treeData.add(new FolderNode('Australian Government And Politics','Australia','Australian Government And Politics','','')); treeData.add(new LinkNode('Australian Government And Politics','Government And Politics','australia/govern.htm','','')); treeData.add(new LinkNode('Australian Government And Politics','State and Local Government','australia/govern.htm#National Government','','')); treeData.add(new LinkNode('Australian Government And Politics','Local Government','australia/govern.htm#State and Local Government','','')); treeData.add(new LinkNode('Australian Government And Politics','Political Parties','australia/govern.htm#Political Parties','','')); treeData.add(new LinkNode('Australian Government And Politics','International Relations','australia/govern.htm#International Relations','','')); treeData.add(new LinkNode('Australian Government And Politics','Defense','australia/govern.htm#Defense','','')); treeData.add(new FolderNode('Australian Economy','Australia','Australian Economy','','')); treeData.add(new LinkNode('Australian Economy','Economy','australia/economy.htm','','')); treeData.add(new LinkNode('Australian Economy','National Income','australia/economy.htm#National Income','','')); treeData.add(new LinkNode('Australian Economy','Labor Force','australia/economy.htm#Labor Force','','')); treeData.add(new LinkNode('Australian Economy','Energy','australia/economy.htm#Energy','','')); treeData.add(new LinkNode('Australian Economy','Transportation','australia/economy.htm#Transportation','','')); treeData.add(new LinkNode('Australian Economy','Rural Industry (Agriculture)','australia/economy.htm#Rural Industry (Agriculture)','','')); treeData.add(new LinkNode('Australian Economy','Industry','australia/economy.htm#Industry','','')); treeData.add(new LinkNode('Australian Economy','Mining','australia/economy.htm#Mining','','')); treeData.add(new LinkNode('Australian Economy','Forestry','australia/economy.htm#Forestry','','')); treeData.add(new LinkNode('Australian Economy','Fishing','australia/economy.htm#Fishing','','')); treeData.add(new LinkNode('Australian Economy','Tourism','australia/economy.htm#Tourism','','')); treeData.add(new LinkNode('Australian Economy','International Economic Relations','australia/economy.htm#International Economic Relations','','')); treeData.add(new LinkNode('Australian Economy','Currency and Banking','australia/economy.htm#Currency and Banking','','')); treeData.add(new LinkNode('Australian Economy','Public Finance','australia/economy.htm#Public Finance','','')); treeData.add(new FolderNode('Australian Society','Australia','Australian Society','','')); treeData.add(new LinkNode('Australian Society','Society','australia/society.htm','','')); treeData.add(new LinkNode('Australian Society','Religious Life','australia/society.htm#Religious Life','','')); treeData.add(new LinkNode('Australian Society','Professional and Service Organizations','australia/society.htm#Professional and Service Organizations','','')); treeData.add(new LinkNode('Australian Society','Labor Movement','australia/society.htm#Labor Movement','','')); treeData.add(new LinkNode('Australian Society','Business and Farm Organizations','australia/society.htm#Business and Farm Organizations','','')); treeData.add(new LinkNode('Australian Society','Women','australia/society.htm#Women','','')); treeData.add(new LinkNode('Australian Society','Social Welfare','australia/society.htm#Social Welfare','','')); treeData.add(new FolderNode('Australian Cultural Life','Australia','Australian Cultural Life','','')); treeData.add(new LinkNode('Australian Cultural Life','Cultural Life','australia/cultural.htm','','')); treeData.add(new LinkNode('Australian Cultural Life','Education','australia/cultural.htm#Education','','')); treeData.add(new LinkNode('Australian Cultural Life','Literature','australia/cultural.htm#Literature','','')); treeData.add(new LinkNode('Australian Cultural Life','Theater and Music','australia/cultural.htm#Theater and Music','','')); treeData.add(new LinkNode('Australian Cultural Life','Art and Architecture','australia/cultural.htm#Art and Architecture','','')); treeData.add(new LinkNode('Australian Cultural Life','Museums and Libraries','australia/cultural.htm#Museums and Libraries','','')); treeData.add(new LinkNode('Australian Cultural Life','Science','australia/cultural.htm#Science','','')); treeData.add(new LinkNode('Australian Cultural Life','Publishing','australia/cultural.htm#Publishing','','')); treeData.add(new LinkNode('Australian Cultural Life','Broadcasting','australia/cultural.htm#Broadcasting','','')); treeData.add(new LinkNode('Australian Cultural Life','Sports, Holidays, and Customs','australia/cultural.htm#Sports, Holidays, and Customs','','')); treeData.add(new FolderNode('Australian Flora And Fauna','Australia','Australian Fora And Fauna','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Flora And Fauna','australia/florafauna.htm','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Ecology','australia/florafauna.htm#Ecology','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Floristics','australia/florafauna.htm#Floristics','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Mammals','australia/florafauna.htm#Mammals','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Birds','australia/florafauna.htm#Birds','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Reptiles','australia/florafauna.htm#Reptiles','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Amphibians','australia/florafauna.htm#Amphibians','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Fish','australia/florafauna.htm#Fish','','')); treeData.add(new LinkNode('Australian Flora And Fauna','Invertebrates','australia/florafauna.htm#Invertebrates','','')); treeData.add(new FolderNode('Australian Special Animals','Australia','Australian Special Animals','','')); treeData.add(new LinkNode('Australian Special Animals','Special Animals','australia/animals.htm','','')); treeData.add(new LinkNode('Australian Special Animals','Kangaroo','australia/animals.htm#Kangaroo','','')); treeData.add(new LinkNode('Australian Special Animals','Koala','australia/animals.htm#Koala','','')); treeData.add(new LinkNode('Australian Special Animals','Duckbilled Platypus','australia/animals.htm#Duckbilled Platypus','','')); treeData.add(new LinkNode('Australian Special Animals','Echidna','australia/animals.htm#Echidna','','')); treeData.add(new LinkNode('Australian Special Animals','Bandicoot','australia/animals.htm#Bandicoot','','')); treeData.add(new LinkNode('Australian Special Animals','Cuscus','australia/animals.htm#Cuscus','','')); treeData.add(new LinkNode('Australian Special Animals','Wombat','australia/animals.htm#Wombat','','')); treeData.add(new LinkNode('Australian Special Animals','Emu','australia/animals.htm#Emu','','')); treeData.add(new LinkNode('Australian Special Animals','Cassowary','australia/animals.htm#Cassowary','','')); treeData.add(new LinkNode('Australian Special Animals','Dingo','australia/animals.htm#Dingo','','')); treeData.add(new LinkNode('Australian Special Animals','Marsupial Mole','australia/animals.htm#Marsupial Mole','','')); treeData.add(new LinkNode('Australian Special Animals','Tasmanian Devil','australia/animals.htm#Tasmanian Devil','','')); treeData.add(new LinkNode('Australian Special Animals','Tasmanian Wolf','australia/animals.htm#Tasmanian Wolf','','')); treeData.add(new FolderNode('Australian History','Australia','Australian History','','')); treeData.add(new LinkNode('Australian History','History','australia/history.htm','','')); treeData.add(new LinkNode('Australian History','Early Exploration','australia/history.htm#Early Exploration','','')); treeData.add(new LinkNode('Australian History','Settlement of New South Wales','australia/history.htm#Settlement of New South Wales','','')); treeData.add(new LinkNode('Australian History','The Administration of New South Wales','australia/history.htm#The Administration of New South Wales','','')); treeData.add(new LinkNode('Australian History','Later Exploration','australia/history.htm#Later Exploration','','')); treeData.add(new LinkNode('Australian History','The 1850s Gold Rush','australia/history.htm#The 1850s Gold Rush','','')); treeData.add(new LinkNode('Australian History','Growth of Democracy','australia/history.htm#Growth of Democracy','','')); treeData.add(new LinkNode('Australian History','The Making of the Commonwealth','australia/history.htm#The Making of the Commonwealth','','')); treeData.add(new LinkNode('Australian History','Early Years of the Commonwealth','australia/history.htm#Early Years of the Commonwealth','','')); treeData.add(new LinkNode('Australian History','World War I','australia/history.htm#World War I','','')); treeData.add(new LinkNode('Australian History','The Interwar Period','australia/history.htm#The Interwar Period','','')); treeData.add(new LinkNode('Australian History','World War II','australia/history.htm#World War II','','')); treeData.add(new LinkNode('Australian History','The Postwar Period','australia/history.htm#The Postwar Period','','')); treeData.add(new LinkNode('Australian History','Swing Back to Labor','australia/history.htm#Swing Back to Labor','','')); treeData.add(new FolderNode('Australian Bushrangers','Australia','Australian Bushrangers','','')); treeData.add(new LinkNode('Australian Bushrangers','Australian Bushrangers','australia/bushranger.htm','','')); treeData.add(new FolderNode('States And Capital Cities','Australia','States And Capital Cities','','')); treeData.add(new FolderNode('Queensland','States And Capital Cities','Queensland','','')); treeData.add(new LinkNode('Queensland','Queensland','australia/queens.htm','','')); treeData.add(new LinkNode('Queensland','The Land','australia/queens.htm#The Land','','')); treeData.add(new LinkNode('Queensland','Climate','australia/queens.htm#Climate','','')); treeData.add(new LinkNode('Queensland','Population','australia/queens.htm#Population','','')); treeData.add(new LinkNode('Queensland','Government','australia/queens.htm#Government','','')); treeData.add(new LinkNode('Queensland','Economy','australia/queens.htm#Economy','','')); treeData.add(new LinkNode('Queensland','Education','australia/queens.htm#Education','','')); treeData.add(new LinkNode('Queensland','History','australia/queens.htm#History','','')); treeData.add(new FolderNode('New South Wales','States And Capital Cities','New South Wales','','')); treeData.add(new LinkNode('New South Wales','New South Wales','australia/nsw.htm','','')); treeData.add(new LinkNode('New South Wales','The Land','australia/nsw.htm#The Land','','')); treeData.add(new LinkNode('New South Wales','Climate','australia/nsw.htm#Climate','','')); treeData.add(new LinkNode('New South Wales','Population','australia/nsw.htm#Population','','')); treeData.add(new LinkNode('New South Wales','Government','australia/nsw.htm#Government','','')); treeData.add(new LinkNode('New South Wales','Economy','australia/nsw.htm#Economy','','')); treeData.add(new LinkNode('New South Wales','Education','australia/nsw.htm#Education','','')); treeData.add(new LinkNode('New South Wales','History','australia/nsw.htm#History','','')); treeData.add(new FolderNode('Victoria','States And Capital Cities','Victoria','','')); treeData.add(new LinkNode('Victoria','Victoria','australia/victoria.htm','','')); treeData.add(new LinkNode('Victoria','The Land','australia/victoria.htm#The Land','','')); treeData.add(new LinkNode('Victoria','Climate','australia/victoria.htm#Climate','','')); treeData.add(new LinkNode('Victoria','Population','australia/victoria.htm#Population','','')); treeData.add(new LinkNode('Victoria','Government','australia/victoria.htm#Government','','')); treeData.add(new LinkNode('Victoria','Economy','australia/victoria.htm#Economy','','')); treeData.add(new LinkNode('Victoria','Education','australia/victoria.htm#Education','','')); treeData.add(new LinkNode('Victoria','History','australia/victoria.htm#History','','')); treeData.add(new FolderNode('South Australia','States And Capital Cities','South Australia','','')); treeData.add(new LinkNode('South Australia','South Australia','australia/saustralia.htm','','')); treeData.add(new LinkNode('South Australia','Geographical Features','australia/saustralia.htm#Geographical Features','','')); treeData.add(new LinkNode('South Australia','Population','australia/saustralia.htm#Population','','')); treeData.add(new LinkNode('South Australia','Government','australia/saustralia.htm#Government','','')); treeData.add(new LinkNode('South Australia','Economy','australia/saustralia.htm#Economy','','')); treeData.add(new LinkNode('South Australia','Education','australia/saustralia.htm#Education','','')); treeData.add(new LinkNode('South Australia','History','australia/saustralia.htm#History','','')); treeData.add(new FolderNode('Western Australia','States And Capital Cities','Western Australia','','')); treeData.add(new LinkNode('Western Australia','Western Australia','australia/waustralia.htm','','')); treeData.add(new LinkNode('Western Australia','The Land','australia/waustralia.htm#The Land','','')); treeData.add(new LinkNode('Western Australia','Population','australia/waustralia.htm#Population','','')); treeData.add(new LinkNode('Western Australia','Government','australia/waustralia.htm#Government','','')); treeData.add(new LinkNode('Western Australia','Economy','australia/waustralia.htm#Economy','','')); treeData.add(new LinkNode('Western Australia','Education','australia/waustralia.htm#Education','','')); treeData.add(new LinkNode('Western Australia','History','australia/waustralia.htm#History','','')); treeData.add(new FolderNode('Northern Territory','States And Capital Cities','Northern Territory','','')); treeData.add(new LinkNode('Northern Territory','Northern Territory','australia/northterr.htm','','')); treeData.add(new LinkNode('Northern Territory','Geographical Features','australia/northterr.htm#Geographical Features','','')); treeData.add(new LinkNode('Northern Territory','Climate','australia/northterr.htm#Climate','','')); treeData.add(new LinkNode('Northern Territory','Population','australia/northterr.htm#Population','','')); treeData.add(new LinkNode('Northern Territory','Government','australia/northterr.htm#Government','','')); treeData.add(new LinkNode('Northern Territory','Economy','australia/northterr.htm#Economy','','')); treeData.add(new LinkNode('Northern Territory','Education','australia/northterr.htm#Education','','')); treeData.add(new LinkNode('Northern Territory','History','australia/northterr.htm#History','','')); treeData.add(new FolderNode('Tasmania','States And Capital Cities','Tasmania','','')); treeData.add(new LinkNode('Tasmania','Tasmania','australia/tasmania.htm','','')); treeData.add(new LinkNode('Tasmania','The Land','australia/tasmania.htm#The Land','','')); treeData.add(new LinkNode('Tasmania','Population','australia/tasmania.htm#Population','','')); treeData.add(new LinkNode('Tasmania','Government','australia/tasmania.htm#Government','','')); treeData.add(new LinkNode('Tasmania','Economy','australia/tasmania.htm#Economy','','')); treeData.add(new LinkNode('Tasmania','History','australia/tasmania.htm#History','','')); treeData.add(new FolderNode('Sydney','States And Capital Cities','Sydney','','')); treeData.add(new LinkNode('Sydney','Sydney','australia/sydney.htm','','')); treeData.add(new LinkNode('Sydney','Geographic Setting and Climate','australia/sydney.htm#Geographic Setting and Climate','','')); treeData.add(new LinkNode('Sydney','Population','australia/sydney.htm#Population','','')); treeData.add(new LinkNode('Sydney','Layout and Landmarks','australia/sydney.htm#Layout and Landmarks','','')); treeData.add(new LinkNode('Sydney','Culture and Recreation','australia/sydney.htm#Culture and Recreation','','')); treeData.add(new LinkNode('Sydney','Education','australia/sydney.htm#Education','','')); treeData.add(new LinkNode('Sydney','Transportation','australia/sydney.htm#Transportation','','')); treeData.add(new LinkNode('Sydney','Government','australia/sydney.htm#Government','','')); treeData.add(new LinkNode('Sydney','Economy','australia/sydney.htm#Economy','','')); treeData.add(new LinkNode('Sydney','History','australia/sydney.htm#History','','')); treeData.add(new LinkNode('States And Capital Cities','Brisbane','australia/capital.htm#Brisbane','','')); treeData.add(new LinkNode('States And Capital Cities','Canberra','australia/capital.htm#Australian Capital Territory, Canberra','','')); treeData.add(new LinkNode('States And Capital Cities','Melbourne','australia/capital.htm#Melbourne','','')); treeData.add(new LinkNode('States And Capital Cities','Adelaide','australia/capital.htm#Adelaide','','')); treeData.add(new LinkNode('States And Capital Cities','Perth','australia/capital.htm#Perth','','')); treeData.add(new LinkNode('States And Capital Cities','Darwin','australia/capital.htm#Darwin','','')); treeData.add(new LinkNode('States And Capital Cities','Hobart','australia/capital.htm#Hobart','','')); treeData.add(new FolderNode('Australian Maps and Pics','Australia','Australian Maps and Pics','','')); treeData.add(new LinkNode('Australian Maps and Pics','Maps And Pictures','australia/maps.htm','','')); treeData.add(new FolderNode('Italy','root','Italy','','')); treeData.add(new LinkNode('Italy','Introduction','italy/italy.htm','','')); treeData.add(new FolderNode('Italian Land','Italy','Italian Land','','')); treeData.add(new LinkNode('Italian Land','The Land','italy/land.htm','','')); treeData.add(new LinkNode('Italian Land','Surface Features','italy/land.htm#Surface Features','','')); treeData.add(new LinkNode('Italian Land','Climate and Vegetation','italy/land.htm#Climate and Vegetation','','')); treeData.add(new LinkNode('Italian Land','Fauna','italy/land.htm#Fauna','','')); treeData.add(new FolderNode('Italian People','Italy','Italian People','','')); treeData.add(new LinkNode('Italian People','The People','italy/people.htm','','')); treeData.add(new LinkNode('Italian People','Ethnic Origins','italy/people.htm#Ethnic Origins','','')); treeData.add(new LinkNode('Italian People','Language','italy/people.htm#Language','','')); treeData.add(new LinkNode('Italian People','Religion','italy/people.htm#Religion','','')); treeData.add(new LinkNode('Italian People','Population','italy/people.htm#Population','','')); treeData.add(new LinkNode('Italian People','Regions','italy/people.htm#Regions','','')); treeData.add(new LinkNode('Italian People','Cities','italy/people.htm#Cities','','')); treeData.add(new LinkNode('Italian People','Emigration','italy/people.htm#Emigration','','')); treeData.add(new FolderNode('Italian Government And Politics','Italy','Italian Government And Politics','','')); treeData.add(new LinkNode('Italian Government And Politics','Government And Politics','italy/govern.htm','','')); treeData.add(new LinkNode('Italian Government And Politics','The Constitution','italy/govern.htm#The Constitution','','')); treeData.add(new LinkNode('Italian Government And Politics','The Legislature','italy/govern.htm#The Legislature','','')); treeData.add(new LinkNode('Italian Government And Politics','The Executive','italy/govern.htm#The Executive','','')); treeData.add(new LinkNode('Italian Government And Politics','Local Government','italy/govern.htm#Local Government','','')); treeData.add(new LinkNode('Italian Government And Politics','The Legal System','italy/govern.htm#The Legal System','','')); treeData.add(new LinkNode('Italian Government And Politics','Political Parties','italy/govern.htm#Political Parties','','')); treeData.add(new LinkNode('Italian Government And Politics','Interest Groups','italy/govern.htm#Interest Groups','','')); treeData.add(new LinkNode('Italian Government And Politics','Armed Forces','italy/govern.htm#Armed Forces','','')); treeData.add(new LinkNode('Italian Government And Politics','International Relations','italy/govern.htm#International Relations','','')); treeData.add(new FolderNode('Italian Economy','Italy','Italian Economy','','')); treeData.add(new LinkNode('Italian Economy','Economy','italy/economy.htm','','')); treeData.add(new LinkNode('Italian Economy','State Planning and Economic Development','italy/economy.htm#State Planning and Economic Development','','')); treeData.add(new LinkNode('Italian Economy','North and South','italy/economy.htm#North and South','','')); treeData.add(new LinkNode('Italian Economy','Gross Domestic Product','italy/economy.htm#Gross Domestic Product','','')); treeData.add(new LinkNode('Italian Economy','Labor Force','italy/economy.htm#Labor Force','','')); treeData.add(new LinkNode('Italian Economy','Industrial Development','italy/economy.htm#Industrial Development','','')); treeData.add(new LinkNode('Italian Economy','Manufacturing','italy/economy.htm#Manufacturing','','')); treeData.add(new LinkNode('Italian Economy','Construction','italy/economy.htm#Construction','','')); treeData.add(new LinkNode('Italian Economy','Energy','italy/economy.htm#Energy','','')); treeData.add(new LinkNode('Italian Economy','Agriculture','italy/economy.htm#Agriculture','','')); treeData.add(new LinkNode('Italian Economy','Forestry','italy/economy.htm#Forestry','','')); treeData.add(new LinkNode('Italian Economy','Fishing','italy/economy.htm#Fishing','','')); treeData.add(new LinkNode('Italian Economy','Mining and Quarrying','italy/economy.htm#Mining and Quarrying','','')); treeData.add(new LinkNode('Italian Economy','Domestic Trade and Services','italy/economy.htm#Domestic Trade and Services','','')); treeData.add(new LinkNode('Italian Economy','Transportation','italy/economy.htm#Transportation','','')); treeData.add(new LinkNode('Italian Economy','Foreign Trade and Payments','italy/economy.htm#Foreign Trade and Payments','','')); treeData.add(new LinkNode('Italian Economy','Currency and Banking','italy/economy.htm#Currency and Banking','','')); treeData.add(new LinkNode('Italian Economy','Government Finance','italy/economy.htm#Government Finance','','')); treeData.add(new FolderNode('Italian Society','Italy','Italian Society','','')); treeData.add(new LinkNode('Italian Society','Society','italy/society.htm','','')); treeData.add(new LinkNode('Italian Society','Social Structure','italy/society.htm#Social Structure','','')); treeData.add(new LinkNode('Italian Society','Living Patterns','italy/society.htm#Living Patterns','','')); treeData.add(new LinkNode('Italian Society','Labor Movement','italy/society.htm#Labor Movement','','')); treeData.add(new LinkNode('Italian Society','Employer Organizations','italy/society.htm#Employer Organizations','','')); treeData.add(new LinkNode('Italian Society','Agricultural Organizations','italy/society.htm#Agricultural Organizations','','')); treeData.add(new LinkNode('Italian Society','Religion','italy/society.htm#Religion','','')); treeData.add(new LinkNode('Italian Society','Women','italy/society.htm#Women','','')); treeData.add(new LinkNode('Italian Society','Youth','italy/society.htm#Youth','','')); treeData.add(new LinkNode('Italian Society','Social Welfare','italy/society.htm#Social Welfare','','')); treeData.add(new FolderNode('Italian Cultural Life','Italy','Italian Cultural Life','','')); treeData.add(new LinkNode('Italian Cultural Life','Cultural Life','italy/culture.htm','','')); treeData.add(new LinkNode('Italian Cultural Life','Education','italy/cultural.htm#Education','','')); treeData.add(new LinkNode('Italian Cultural Life','Literature and Drama','italy/cultural.htm#Literature and Drama','','')); treeData.add(new LinkNode('Italian Cultural Life','Music and Opera','italy/cultural.htm#Music and Opera','','')); treeData.add(new LinkNode('Italian Cultural Life','Art and Architecture','italy/cultural.htm#Art and Architecture','','')); treeData.add(new LinkNode('Italian Cultural Life','Film-making','italy/cultural.htm#Film-making','','')); treeData.add(new LinkNode('Italian Cultural Life','Museums and Libraries','italy/cultural.htm#Museums and Libraries','','')); treeData.add(new LinkNode('Italian Cultural Life','Radio and the Press','italy/cultural.htm#Radio and the Press','','')); treeData.add(new LinkNode('Italian Cultural Life','Recreation','italy/cultural.htm#Recreation','','')); treeData.add(new LinkNode('Italian Cultural Life','Holidays and Festivals','italy/cultural.htm#Holidays and Festivals','','')); treeData.add(new FolderNode('Italian History','Italy','Italian History','','')); treeData.add(new LinkNode('Italian History','History','italy/history.htm','','')); treeData.add(new LinkNode('Italian History','Prehistoric Times','italy/history.htm#Prehistoric Times','','')); treeData.add(new LinkNode('Italian History','The Viking Age','italy/history.htm#The Viking Age','','')); treeData.add(new LinkNode('Italian History','The Early Middle Ages','italy/history.htm#The Early Middle Ages','','')); treeData.add(new LinkNode('Italian History','The 14th Century','italy/history.htm#The 14th Century','','')); treeData.add(new LinkNode('Italian History','Union of Kalmar','italy/history.htm#Union of Kalmar','','')); treeData.add(new LinkNode('Italian History','Vasa Period','italy/history.htm#Vasa Period','','')); treeData.add(new LinkNode('Italian History','Gustavus Adolphus','italy/history.htm#Gustavus Adolphus','','')); treeData.add(new LinkNode('Italian History','Queen Christina','italy/history.htm#Queen Christina','','')); treeData.add(new LinkNode('Italian History','Charles X','italy/history.htm#Charles X','','')); treeData.add(new LinkNode('Italian History','Charles XI','italy/history.htm#Charles XI','','')); treeData.add(new LinkNode('Italian History','Great Northern War','italy/history.htm#Great Northern War','','')); treeData.add(new LinkNode('Italian History','Era of Liberty','italy/history.htm#Era of Liberty','','')); treeData.add(new LinkNode('Italian History','Gustavus III','italy/history.htm#Gustavus III','','')); treeData.add(new LinkNode('Italian History','The 19th Century','italy/history.htm#The 19th Century','','')); treeData.add(new LinkNode('Italian History','Early 20th Century','italy/history.htm#Early 20th Century','','')); treeData.add(new LinkNode('Italian History','World War II and Postwar Era','italy/history.htm#World War II and Postwar Era','','')); treeData.add(new LinkNode('Italian History','Integrating with Europe','italy/history.htm#Integrating with Europe','','')); treeData.add(new FolderNode('email','root','E-mail','','')); treeData.add(new LinkNode('email','Kittara','mailto:kittara@cheerful.com?subject=WorldSite','','img-email.gif')); structureStyle = 1; backgroundColor = '#000000'; textColor = '#FFFFFF'; linkColor = '#0000AA'; aLinkColor = '#FF0000'; vLinkColor = '#880088'; backgroundImage = ''; defaultTargetFrame = 'pageFrame'; defaultImageURL = 'images/'; defaultLinkIcon = 'img-page-globe.gif'; defaultTreeFont = 'MS Sans Serif,Arial,Helvetica'; defaultTreeFontSize = 1; prefixHTML = ""; suffixHTML = ""; }