var total=1; var db = new Array(); // -- Enter Values Here -- // Format: dbAdd(parent[true|false] , description, URL [blank for nohref], level , TARGET [blank for "content"], new? [1=yes]) dbAdd( true , "Home" , "public_home.php" , 0 , "", 0) dbAdd( true , "Kopen" , "" , 0 , "", 0) dbAdd( false , "Advertenties Bekijken" , "public_market_search_item_sell.php" , 1 , "" , 0) dbAdd( false , "Oproep Plaatsen" , "public_market_add_item_buy.php" , 1 , "" , 0) dbAdd( false , "Top 25" , "public_market_top25.php" , 1 , "" , 0) dbAdd( true , "Verkopen" , "" , 0 , "" , 0) dbAdd( false , "Advertentie Plaatsen" , "public_market_add_item_sell.php" , 1 , "" , 0) dbAdd( false , "Oproepen Bekijken" , "public_market_search_item_buy.php" , 1 , "" , 0) dbAdd( false , "Bedrijven" , "public_sub.php" , 1 , "" , 0) dbAdd( true , "Bedrijven" , "public_sub.php" , 0 , "" , 0) dbAdd( false , "Informatie" , "public_sub.php" , 1 , "" , 0) dbAdd( false , "Abonneren" , "public_sub_subscribe.php" , 1 , "" , 0) dbAdd( false , "Inloggen" , "business_home.php" , 1 , "" , 0) dbAdd( false , "Bedrijvengids" , "public_yp.php" , 1 , "" , 0) dbAdd( true , "Leden" , "" , 0 , "" , 0) dbAdd( false , "Aanmelden" , "public_members_signup.php" , 1 , "" , 0) dbAdd( false , "Inloggen" , "public_login.php" , 1 , "" , 0) dbAdd( false , "Profiel Wijzigen" , "private_members_change_profile.php" , 1 , "" , 0) dbAdd( false , "Wachtwoord Vergeten" , "public_passmailer.php" , 1 , "" , 0) dbAdd( true , "Bedrijvengids" , "public_yp.php" , 0 , "" , 0) dbAdd( false , "Zoeken" , "public_yp_search.php" , 1 , "" , 0) dbAdd( false , "Aanmelden" , "public_yp_add_business.php" , 1 , "" , 0) dbAdd( false , "Categorieën" , "public_yp.php" , 1 , "" , 0) dbAdd( false , "Rubrieken" , "public_yp_trades.php" , 1 , "" , 0) dbAdd( false , "Wijzigen" , "private_yp_change_business.php" , 1 , "" , 0) //dbAdd( true , "Boeken" , "public_books_show_books.php" , 0 , "" , 0) dbAdd( true , "Agenda" , "public_agenda_show_events.php" , 0 , "" , 0) dbAdd( false , "Evenement Aanmelden" , "public_agenda_add_event.php" , 1 , "" , 0) dbAdd( false , "Evenement Wijzigen" , "private_agenda_admin.php" , 1 , "" , 0) //dbAdd( true , "Gastenboek" , "public_guestbook.php" , 0 , "" , 0) dbAdd( true , "Adverteren" , "public_about_advertising.php" , 0 , "" , 0) dbAdd( true , "Contact" , "" , 0 , "" , 0) dbAdd( false , "Contact" , "public_about_contact.php" , 1 , "" , 0) dbAdd( false , "Adverteren" , "public_about_advertising.php" , 1 , "" , 0) dbAdd( false , "Disclaimer" , "public_about_disclaimer.php" , 1 , "" , 0) dbAdd( false , "Privacy" , "public_about_privacy.php" , 1 , "" , 0) dbAdd( false , "Voorwaarden" , "public_about_conditions.php" , 1 , "" , 0) // -- End modifications -- // Add an entry to the database function dbAdd(mother,display,URL,indent,top,newitem) { db[total] = new Object; db[total].mother = mother db[total].display = display db[total].URL = URL db[total].indent = indent db[total].top = top db[total].newitem = newitem total++ }