			// JAVASCRIPT VARS
			// cache buster
			var cacheBuster = "?t=" + Date.parse(new Date());
            
            // swf path
            var swfPath = "../../deploy/player.swf";
            //swfPath += cacheBuster; // uncomment this line to activate the cache buster
            
			
			// stage dimensions
			var stageW = 100;//560;//"100%";
			var stageH = 35;//300;//"100%";
			
			
			// ATTRIBUTES
		    var attributes = {};
		    attributes.id = 'FlabellComponent';
		    attributes.name = attributes.id;
		    
			// PARAMS
			var params = {};
			params.allowfullscreen = "true";
			params.allowScriptAccess = "always";
			params.bgcolor = "#ffffff";
			params.wmode = "transparent";
			

		    /* FLASH VARS */
			var flashvars = {};				
			
			/// if commented / delete these lines, the component will take the stage dimensions defined 
			/// above in "JAVASCRIPT SECTIONS" section or those defined in the settings xml			
			flashvars.componentWidth = stageW-1;//281; // define these dimensions different then the stage dimension only for preview because the component is samller then the stage
			flashvars.componentHeight = stageH-1;//78;
			
			/// path to the content folder(where the xml files, images or video are nested)
			/// if you want to use absolute paths(like "http://domain.com/images/.…") then leave it empty("")
			flashvars.pathToFiles = "../../deploy/player/";
			flashvars.xmlPath = "xml/settings.xml";
			
			// other vars
			flashvars.artistName = "Busta Rhymes";
			flashvars.songName = "Break Ya Neck";
			flashvars.songURL = "songs/song.mp3";			
						
			
			/** EMBED THE SWF**/
			swfobject.embedSWF(swfPath, attributes.id, stageW, stageH, "9.0.124", "assets/js/expressInstall.swf", flashvars, params);
