// ------------------------------------+ // MAIN FLASHVARS OBJECT | // ------------------------------------+ // These are the FlashVars for the main swf: this.SWF_VARS = {}; // Sponsor assets and URL this.SWF_VARS.sponsor_url = ""; this.SWF_VARS.sponsor_click = ""; // Tab URL's this.SWF_VARS.tab1_url = "http://coaches.aol.com/business-and-career/lois-frankel/promotion/tab1.html"; this.SWF_VARS.tab1Label = "GET THE CORNER OFFICE"; this.SWF_VARS.tab2_url = "http://coaches.aol.com/business-and-career/lois-frankel/promotion/tab2.html"; this.SWF_VARS.tab2Label = "MONEY SMARTS"; this.SWF_VARS.tab3_url = "http://coaches.aol.com/business-and-career/lois-frankel/promotion/tab3.html"; this.SWF_VARS.tab3Label = "TASK LIST"; this.SWF_VARS.tab4_url = ""; this.SWF_VARS.defaultTab = "1"; this.SWF_VARS.defaultItem = ""; this.SWF_VARS.title_url = "http://cdn.digitalcity.com/coaches_new/frankel_title.swf"; // // ------------------------------------------------------+ // GET QUERY STRING VARIABLES AND PASS THEM FO FLASH | // ------------------------------------------------------+ if(window.location.search != null && window.location.search.length) { var searchString = window.location.search.substring(1); searchString = searchString.replace(/%26/g, "&"); var searchList = searchString.split("&"); for(var i = 0; i < searchList.length; i++){ var temp = searchList[i].split("="); this.SWF_VARS[temp[0]] = temp[1]; } } // ------------------------------------+ // DEEP LINKING | // ------------------------------------+ function getMBFrameSRC() { var defaultItem = (this.SWF_VARS.defaultItem != null && this.SWF_VARS.defaultItem != "") ? "?defaultItem="+Number(this.SWF_VARS.defaultItem-1) : ""; var defaultPage = (this.SWF_VARS.defaultTab=="" || this.SWF_VARS.defaultTab==null) ? (this.SWF_VARS.tab1_url)+defaultItem : (this.SWF_VARS["tab"+ this.SWF_VARS.defaultTab+"_url"])+defaultItem; return defaultPage; } // ------------------------------------+ // BUILD FLASH MOVIE | // ------------------------------------+ this.SWF_LOCATION = "http://cdn.digitalcity.com/coaches_new/coaches_3tabs.swf"; this.SWF_NAME = "coaches_tabs"; this.SWF_WIDTH = 756; this.SWF_HEIGHT = 85; this.SWF_VERSION = "7,0,0,0"; this.SWF_BGCOLOR = "white"; // this.SWF_Factory.makeSWF(this.SWF_VERSION, this.SWF_WIDTH, this.SWF_HEIGHT, this.SWF_NAME, this.SWF_LOCATION, this.SWF_BGCOLOR, this.SWF_VARS, null); //