// ------------------------------------+
//    MAIN FLASHVARS OBJECT            |
// ------------------------------------+
//
this.SWF_VARS = {};
//this.SWF_VARS.deeplink = "5"; // This variable will be passed to the Flash movie
//
// ------------------------------------+
//   GRAB VARIABLES FROM QUERY STRING  |
// ------------------------------------+
//	Variables in the url query string will be added to the SWF_VARS object
if(window.location.search != null && window.location.search.length){
	var searchString = window.location.search.substring(1);
	var searchList = searchString.split("&"); // File must be remote otherwise split by '%26'
	for(var i = 0; i < searchList.length; i++){
		var temp = searchList[i].split("=");
		this.SWF_VARS[temp[0]] = temp[1];
	}
}
// ------------------------------------+
//   BUILD FLASH MOVIE                 |
// ------------------------------------+
this.SWF_LOCATION = "http://cdn.digitalcity.com/mf_narnia/narnia_charguide_main_v04.swf";
this.SWF_NAME = "main";
this.SWF_WIDTH = 756;
this.SWF_HEIGHT = 406;
this.SWF_VERSION = "7,0,0,0";
this.SWF_BGCOLOR = "#ffffff";
//
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);
//