// Create a location bar record array with items
RECORD ARRAY location;
INSERT INTO location(title, link)
VALUES("root", "index.shtml?dir=/root/");
INSERT INTO location(title, link)
VALUES("folder", "index.shtml?dir=/root/folder/");
INSERT INTO location(title, link)
VALUES("sub", "index.shtml?dir=/root/folder/sub/");
// And add the location bar to the page
AddLocationBar(location,
'/img/foldericons/overlappingfolder.gif',
"Back to the normal browser", "index.shtml"); |