--- original/fckeditor-2.6.js	2010-01-27 10:10:35.000000000 -0800
+++ new/fckeditor-2.6.js	2010-03-03 13:31:19.000000000 -0800
@@ -48,6 +48,8 @@ Drupal.wysiwyg.editor.instance.fckeditor
     instance.FCK.Events.AttachEvent('OnFocus', function(editorInstance) {
       Drupal.wysiwyg.activeId = editorInstance.Name;
     });
+    
+    Drupal.wysiwyg.instances[instance.FCK.Name].FCKDialog  = instance.FCKDialog;
 
     // Create a custom data processor to wrap the default one and allow Drupal
     // plugins modify the editor contents.
@@ -136,6 +138,16 @@ Drupal.wysiwyg.editor.instance.fckeditor
 
   openDialog: function(dialog, params) {
     // @todo Implement open dialog.
+    if( !dialog.resizable ){
+        dialog.resizable = true;
+    }
+    if( !dialog.width ){
+        dialog.width = 200;
+    }
+    if( !dialog.height ){
+        dialog.height = 200;
+    }
+    this.FCKDialog.OpenDialog( 'FCKDialog_' + dialog.name , dialog.title, dialog.url, dialog.width, dialog.height, null, null, dialog.resizable ) ;
   },
 
   closeDialog: function(dialog) {
