			// URL PARAMS
			function gup(name)
			{
				name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
				var regexS = "[\\?&]"+name+"=([^&#]*)";
				var regex = new RegExp( regexS );
				var results = regex.exec( window.location.href );
				if( results == null )
				return "";
				else
				return results[1];
			}
			
			// PARAMS			
			var params = {};
			params.bgcolor = "#efefef";
			params.allowfullscreen = "true";
			params.allowScriptAccess = "always";
			params.scale = "noscale";   
			params.wmode = "transparent"; 			
			
		    // ATTRIBUTES
		    var attributes = {};
		    attributes.id = 'FlabellComponent';
		    attributes.name = 'FlabellComponent'				

		    // JAVASCRIPT VARS 
		    var cacheBuster = Date.parse(new Date());
		  
		    // stage dimensions
			var stageW = 960;
			var stageH = 300;

			
			// FLASH VARS
			var flashvars = {};
			flashvars.selectedItem = gup('id');
			
			/// 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			
			
			/// 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 = "videogreenscreen/";
			flashvars.settingsXmlPath = "xml/playersettings.xml";
			flashvars.playlistXmlPath = "xml/playlist.xml";
			
			
			// EMBED CODE
			swfobject.embedSWF("preview.swf?t="+cacheBuster, "FlabellComponent", stageW, stageH, "9.0.124", "expressInstall.swf", flashvars, params, attributes);