'***** Start Init pages *********************************************
Dim myPage As ABMPageTemplate
myPage.Initialize
Dim Homep As HomePage
Homep.Initialize
Dim about As AboutPage
about.Initialize
Dim usersp As UsersPage
usersp.Initialize
'****** End Init pages **********************************************
' add each of the pages to the app
'***** Start Add pages ***********************************************
myApp.AddPage(myPage.Page)
myApp.AddPage(about.page)
myApp.AddPage(Homep.page)
myApp.AddPage(usersp.page)