//The following code provides the actual content for the submenus referenced from the html page. //This first section provides the definition for the menutop and menu bottom vars // 11/18/01 makeover //4/09/02 redo for new 2002 sites // set some common factors for submenus topcontent = "
" botcontent = "
" menucolor="F4D167" menuwidth=150 //The following sections actually describe submenus // -----Highlights----- menu1 = "Formats
" + "Who Attends
" // ----Benefits--- menu2 = "Vendor Benefits
" + "IT Solution Provider Benefits
" + "Testimonials
" // ---FAQ--- menu3 = "Vendor Frequently Asked Questions
" + "IT Solution Provider Frequently Asked Questions
" // --Awards--- menu4 = "Awards Summer 2002
" // --- Next Event--- menu5 = "Agenda
" + "What's New
" + "Attending Vendors
" + "Attending Solution Providers
" + "Promotional Opportunities
" + "Sponsors
" // ---Login--- menu10 = "Log-In
" /* The code below creates the actual submenus. We pass submenu name, contents, top, left, width, and bgcolor */ IM_createSubmenu("sub-highlights",topcontent+menu1+botcontent, 100, 125, menuwidth,menucolor) // -- highlights-- IM_createSubmenu("sub-benefits",topcontent+menu2+botcontent, 128, 125, menuwidth,menucolor) // -- benefits-- IM_createSubmenu("sub-faq",topcontent+menu3+botcontent, 148, 125, menuwidth,menucolor) // --faq-- IM_createSubmenu("sub-awards",topcontent+menu4+botcontent, 175, 125, menuwidth,menucolor) // --awards-- IM_createSubmenu("sub-nextevent",topcontent+menu5+botcontent, 205, 125, menuwidth,menucolor) // -- next event-- IM_createSubmenu("sub-about",topcontent+menu7+botcontent,20, 375,menuwidth,menucolor) // --About Vision Events-- IM_createSubmenu("sub-calendar",topcontent+menu8+botcontent,20, 520,menuwidth,menucolor) // --Calendar-- IM_createSubmenu("sub-contact",topcontent+menu9+botcontent,20, 600,menuwidth,menucolor) // --Contact -- IM_createSubmenu("sub-login",topcontent+menu10+botcontent,20, 700,menuwidth,menucolor) // --login --