function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

        menu = new Menu();
        menu.addItem("homeid", "HOME", "HOME", null, null);
        menu.addItem("authorid", "About the Author", "About the Author",  null, null);
        menu.addItem("truthid", "How True Is This Book?", "How True Is This Book?",  null, null);
        menu.addItem("talkbackid", "Talk Back", "Talk Back",  null, null);
        menu.addItem("greatbooksid", "Great Books On This Subject", "Great Books On This Subject",  null, null);
        menu.addItem("buyitid", "Buy This Book", "Buy This Book",  null, null);



        menu.addSubItem("homeid", "Back To Main Page", "Back To Main Page",  "http://www.daughter-of-god.com/index.shtml");

        menu.addSubItem("authorid", "Where Did You Get The Idea?", "Where Did You Get The Idea?",  "conversation.shtml#idea");
        menu.addSubItem("authorid", "Biography", "Biography",  "http://www.ideaworx.com/who.html");
        menu.addSubItem("authorid", "Other Books By Lewis Perdue", "Other Books By Lewis Perdue",  "otherbooks.shtml");
        menu.addSubItem("authorid", "Lew's Other Web Sites", "Lew's Other Web Sites",  "http://www.ideaworx.com/");
                

        menu.addSubItem("truthid", "How Much of this is true?", "How Much of this is true?",  "conversation.shtml#truth");       
menu.addSubItem("truthid", "Religious Issues: Links", "Religious Issues: Links",  "religiouslinks.shtml");
        menu.addSubItem("truthid", "Nazi Art Theft: Links", "Nazi Art Theft: Links",  "arttheftlinks.shtml");
       

        menu.addSubItem("talkbackid", "Message Board", "Message Board",  "http://www.daughter-of-god.com/wwwboard/wwwboard.html");
        menu.addSubItem("talkbackid", "Email the Author", "Email the Author",  "mailto:lperdue@ideaworx.com");
        

        menu.addSubItem("greatbooksid", "Religion", "Religion",  "religionbooks.shtml");
        menu.addSubItem("greatbooksid", "Nazi Art Theft", "Nazi Art Theft",  "arttheftbooks.shtml");
        

        menu.addSubItem("buyitid", "Buy Paperback From Amazon.com", "Buy Paperback From Amazon.com",  "http://www.amazon.com/exec/obidos/ASIN/0812589718/daughteofgod-20");
        menu.addSubItem("buyitid", "Buy Hardback From Amazon.com", "Buy Hardback From Amazon.com",  "http://www.amazon.com/exec/obidos/ASIN/0312890745/daughteofgod-20");
        menu.addSubItem("buyitid", "Buy Paperback From BookSense", "Buy Paperback From BookSense",  "http://www.booksense.com/product/info.jsp?affiliateId=Worx&isbn=0812589718");
        menu.addSubItem("buyitid", "Buy Hardback From BookSense", "Buy Hardback From BookSense",  "http://www.booksense.com/product/info.jsp?Worx&isbn=0312890745");

        

        menu.showMenu();
}