//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 topcontent = "
" botcontent = "
" menucolor="#ffcc00" menuwidth=150 //The following sections actually describe submenus. Each section //contains a table in which to arrange the content. Currently they //use the menu3 class from the style sheet in the calling html. // -----The Highlights----- menu1 = "Format
" + "Who Attends
" // ----The Benefits--- menu2 = "Vendor Benefits
" + "Retailer Benefits
" + "Testimonials
" // ---The FAQ--- menu3 = "Vendor Frequently Asked Questions
" + "Retailer Frequently Asked Questions
" // ---Awards--- menu4 = "Spring 2002 Awards
" + "Fall 2001 Awards
" // ---upcoming Event--- menu5 = "Agenda
" + "Whats New?
" + "Attending Vendors
" + "Attending Retailers
" + "Promotional Opportunities
" + "Sponsors
" // --THE FOLLOWING ARE THE TOPMENU's SUBMENUS //The code below creates the actual submenus. We pass submenu name, contents, top, left, width, and bgcolor IM_createSubmenu("sub-highlights",topcontent+menu1+botcontent, 210, 150, menuwidth,menucolor) IM_createSubmenu("sub-benefits",topcontent+menu2+botcontent, 230, 150, menuwidth,menucolor) IM_createSubmenu("sub-faq",topcontent+menu3+botcontent, 265, 150, menuwidth,menucolor) IM_createSubmenu("sub-awards",topcontent+menu4+botcontent, 295, 150, menuwidth,menucolor) IM_createSubmenu("sub-nextevent",topcontent+menu5+botcontent, 340, 150, menuwidth,menucolor) IM_createSubmenu("sub-about",topcontent+menu7+botcontent,100, 120,menuwidth,menucolor) // --About Vision Events-- IM_createSubmenu("sub-calendar",topcontent+menu8+botcontent,124, 120,menuwidth,menucolor) // --Calendar-- IM_createSubmenu("sub-contact",topcontent+menu9+botcontent,150,120,menuwidth,menucolor) // --Contact -- IM_createSubmenu("sub-login",topcontent+menu10+botcontent,180,120,menuwidth,menucolor) // --login --