--- C:/Documents and Settings/Lisa/Bureau/video_filter-6.x-2.7/video_filter/wysiwyg/tinymce/jscripts/video_filter.js	Thu Oct 22 20:40:46 2009
+++ C:/Documents and Settings/Lisa/Bureau/video_filter/wysiwyg/tinymce/jscripts/video_filter.js	Thu Mar 04 18:51:50 2010
@@ -13,7 +13,22 @@
     return;
   }
   else {
-    ed.execCommand('mceInsertContent', false, '[video:'+nl.file.value+']');
+    var str = '[video:' + nl.file.value;
+	if (nl.width.value !== '') {
+	  str += ' width:' + nl.width.value;
+	}
+	if (nl.height.value !== '') {
+	  str += ' height:' + nl.height.value;
+	}
+	if (nl.align.value !== 'none') {
+	  str += ' align:' + nl.align.value;
+	}
+	if (nl.autoplay.checked) {
+	  str += ' autoplay:' + nl.autoplay.value;
+	}
+	str += ']';
+	
+    ed.execCommand('mceInsertContent', false, str);
     ed.undoManager.add();
     tinyMCEPopup.close();
     return;
