Index: swfaddress.admin.inc
===================================================================
--- swfaddress.admin.inc
+++ swfaddress.admin.inc
@@ -88,13 +88,13 @@
     '#required' => TRUE
   );
 
-  $form['swf_options']['swfaddress_flash_background'] = array(
+  $form['swf_options']['swfaddress_flash_parameters'] = array(
     '#type' => 'textfield',
-    '#title' => t('Background Color'),
-    '#size' => 6,
-    '#maxlength' => 6,
-    '#description' => t('The six-character hexidecimal background color for the SWF.'),
-    '#default_value' => variable_get('swfaddress_flash_background', 'FFFFFF'),
+    '#title' => t('Parameters'),
+    '#size' => 100,
+    '#maxlength' => 255,
+    '#description' => t('Parameters you can set through SWFObject, separate parameters like <i>param:\'value\'</i>.'),
+    '#default_value' => variable_get('swfaddress_flash_parameters', 'bgcolor:\'#FFFFFF\''),
     '#required' => TRUE
   );
 
Index: swfaddress.module
===================================================================
--- swfaddress.module
+++ swfaddress.module
@@ -89,7 +89,7 @@
       variable_get('swfaddress_flash_width', 550),
       variable_get('swfaddress_flash_height', 400),
       variable_get('swfaddress_flash_version', '9.0.0'),
-      variable_get('swfaddress_flash_background', 'FFFFFF'),
+      variable_get('swfaddress_flash_parameters', 'bgcolor:\'#FFFFFF\''),
       variable_get('swfaddress_flash_replace_id', 'swf-replace')
     ), 'inline', 'header');
   }
@@ -162,7 +162,7 @@
 function swfaddress_theme() {
   return array(
     'swfaddress_swfobject' => array(
-      'arguments' =>  array('swf_address' => NULL, 'flash_tag_id' => NULL, 'flash_width' => NULL, 'flash_height' => NULL, 'flash_version' => NULL, 'flash_background' => NULL, 'flash_replace_id' => NULL)
+      'arguments' =>  array('swf_address' => NULL, 'flash_tag_id' => NULL, 'flash_width' => NULL, 'flash_height' => NULL, 'flash_version' => NULL, 'flash_parameters' => NULL, 'flash_replace_id' => NULL)
     ),
   );
 }
@@ -216,13 +216,13 @@
  * Theme function to control the HTML output for the SWFObject call.
  */
 function theme_swfaddress_swfobject($swf_address, $flash_tag_id, $flash_width, $flash_height, $flash_version,
-  $flash_background, $flash_replace_id) {
+  $flash_parameters, $flash_replace_id) {
   $swfaddress_js = <<<SWFOBJECT
 $(document).ready(function(){
-swfobject.embedSWF("%s%s", "%s", "%s", "%s", "%s", false, {}, {bgcolor: "#%s"}, {id: "%s", name: "%s"});
+swfobject.embedSWF("%s%s", "%s", "%s", "%s", "%s", false, {}, {%s}, {id: "%s", name: "%s"});
 });
 SWFOBJECT;
 
   return sprintf($swfaddress_js, base_path(), $swf_address, $flash_replace_id, $flash_width, $flash_height,
-  $flash_version, $flash_background, $flash_tag_id, $flash_tag_id);
+  $flash_version, $flash_parameters, $flash_tag_id, $flash_tag_id);
 }
\ No newline at end of file
