// JAVASCRIPT VARS
			// cache buster
			var cacheBuster = "?t=" + Date.parse(new Date());		
			
			// stage dimensions
			var stageW = 640;//950;//"100%";//
			var stageH = 400;//600;//"100%";//
			
			
			// ATTRIBUTES
		    var attributes = {};
		    attributes.id = 'FlabellComponent';
		    attributes.name = attributes.id;
		    
			// PARAMS
			var params = {};
			params.allowfullscreen = "true";
			params.allowScriptAccess = "always";			
			params.bgcolor = "";
			//params.wmode = "transparent";
			

		    /* FLASH VARS */
			var flashvars = {};				
			
	
			
			/// 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 = "videoplayer/";
			
			// settings xml path
			flashvars.xmlPath = "xml/playersettings.xml";

			
			//			
			flashvars.videoPath = "videos/about.flv";
			//flashvars.streamer = "";
						
			// preview path
			flashvars.previewPath = "images/about.jpg";			
			
			// video title
			//flashvars.videoTitle = "Recent Sparky Video";
			
			// preview path
			//flashvars.logoPath = "images/logo.png";			
			//flashvars.logoLink = "http://www.flabell.com";
			
			// other params
			//flashvars.otherVar = "";

			
			/** EMBED THE SWF**/
			swfobject.embedSWF("preview.swf"+cacheBuster, attributes.id, stageW, stageH, "9.0.124", "js/expressInstall.swf", flashvars, params);
		
