Index: flowplayer/flowplayer.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flowplayer/Attic/flowplayer.admin.inc,v
retrieving revision 1.1.2.3
diff -b -U 5 -r1.1.2.3 flowplayer.admin.inc
--- flowplayer/flowplayer.admin.inc	28 Jul 2009 17:09:01 -0000	1.1.2.3
+++ flowplayer/flowplayer.admin.inc	10 Nov 2009 11:24:48 -0000
@@ -35,10 +35,22 @@
       'scale' => t('Scale: Fill all available space, ignoring metadata'),
     ),
     '#description' => t('The <a href="@options">scaling-property</a> for the video. Scale is the default option.', array('@options' => 'http://flowplayer.org/documentation/configuration/clips.html#scaling')),
     '#default_value' => variable_get('flowplayer_background_gradient', 'scale'), 
   );
+  // Add wmode property.
+  $form['behavior']['flowplayer_wmode'] = array(
+    '#type' => 'select',
+    '#title' => t('Wmode'),
+    '#options' => array(
+      'window' => t('movie plays in its own rectangular window on a web page'),
+      'opaque' => t('the movie hides everything on the page behind it'),
+      'transparent' => t('the background of the HTML page shows through all transparent portions of the movie, this may slow animation performance'),
+    ),
+    '#description' => t('Sets the Window Mode property of the Flash movie for transparency, layering, and positioning in the browser.'),
+    '#default_value' => variable_get('flowplayer_wmode', 'window'),
+  );
 
   // Construct the color picker
   $form['color'] = array(
     '#type' => 'fieldset',
     '#title' => t('Player colors'),
