Common subdirectories: video/CVS and video.new/CVS
Common subdirectories: video/po and video.new/po
diff -uN video/video.css video.new/video.css
--- video/video.css	1970-01-01 01:00:00.000000000 +0100
+++ video.new/video.css	2005-09-13 16:28:05.000000000 +0200
@@ -0,0 +1,14 @@
+/* hides the second object from all versions of IE */
+* html object.mov {
+    display: none;
+}
+
+/* displays the second object in all versions of IE apart from 5 on PC */
+* html object.mov/**/ {
+    display: inline;
+}
+
+/* hides the second object from all versions of IE >= 5.5 */
+* html object.mov {
+    display/**/: none;
+}
\ No newline at end of file
diff -uN video/video.module video.new/video.module
--- video/video.module	2005-09-13 22:19:43.000000000 +0200
+++ video.new/video.module	2005-09-13 16:35:56.000000000 +0200
@@ -746,17 +746,35 @@
  *   string of content to display
  */
 function theme_video_play_quicktime(&$node) {
+
+  drupal_set_html_head('<style type="text/css">@import url('. drupal_get_path('module', 'video') .'/video.css);</style>');
+
+
   $height = $node->videoy + 16; //Increase the height to accommodate the player controls on the bottom.
+/*
   $output = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'.$node->videox.'" height="'.$height.'" scale="tofit" codebase="http://www.apple.com/qtactivex/qtplugin.cab">          
                 <param name="SRC" value="'.$node->vidfile.'" />
                 <param name="AUTOPLAY" value="true" />
                 <param name="KIOSKMODE" value="false" />
                 <embed src="'.$node->vidfile.'" width="'.$node->videox.'" height="'.$height.'" scale="tofit" autoplay="true" kioskmode="false" pluginspage="http://www.apple.com/quicktime/download/">
                 </embed>
-             </object>';
+             </object>';*/
+
+  $output = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'.$node->videox.'" height="'.$height.'">
+ <param name="src" value="'.$node->vidfile.'" />
+ <param name="controller" value="true" />
+ <object type="video/quicktime" data="'.$node->vidfile.'" width="'.$node->videox.'" height="'.$height.'" class="mov">
+  <param name="controller" value="true" />
+  Please download a QuickTime player for your browser/platform.
+ </object>
+</object>';
+
   $output = _theme_video_format_play($output, t('http://www.apple.com/quicktime/download'),
                                       t('Link to QuickTime Download Page'),
                                       t('Download latest Quicktime Player'));
+
+
+
   return theme('page', $output);
 }
 
