Index: /CKEditor/trunk/_source/plugins/filebrowser/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/filebrowser/plugin.js	(revision 6447)
+++ /CKEditor/trunk/_source/plugins/filebrowser/plugin.js	(revision 6448)
@@ -113,5 +113,5 @@
 ( function()
 {
-	/**
+	/*
 	 * Adds (additional) arguments to given url.
 	 *
@@ -136,5 +136,5 @@
 	}
 
-	/**
+	/*
 	 * Make a string's first character uppercase.
 	 *
@@ -149,5 +149,5 @@
 	}
 
-	/**
+	/*
 	 * The onlick function assigned to the 'Browse Server' button. Opens the
 	 * file browser and updates target field when file is selected.
@@ -178,5 +178,5 @@
 	}
 
-	/**
+	/*
 	 * The onlick function assigned to the 'Upload' button. Makes the final
 	 * decision whether form is really submitted and updates target field when
@@ -203,5 +203,5 @@
 	}
 
-	/**
+	/*
 	 * Setups the file element.
 	 *
@@ -224,5 +224,5 @@
 	}
 
-	/**
+	/*
 	 * Traverse through the content definition and attach filebrowser to
 	 * elements with 'filebrowser' attribute.
@@ -309,5 +309,5 @@
 	}
 
-	/**
+	/*
 	 * Updates the target element with the url of uploaded/selected file.
 	 *
@@ -334,5 +334,5 @@
 	}
 
-	/**
+	/*
 	 * Returns true if filebrowser is configured in one of the elements.
 	 *
@@ -501,2 +501,24 @@
  * config.filebrowserWindowFeatures = 'resizable=yes,scrollbars=no';
  */
+
+/**
+ * The width of the file browser popup window. It can be a number or a percent string.
+ * @name CKEDITOR.config.filebrowserWindowWidth
+ * @type Number|String
+ * @default '80%'
+ * @example
+ * config.filebrowserWindowWidth = 750;
+ * @example
+ * config.filebrowserWindowWidth = '50%';
+ */
+
+/**
+ * The height of the file browser popup window. It can be a number or a percent string.
+ * @name CKEDITOR.config.filebrowserWindowHeight
+ * @type Number|String
+ * @default '70%'
+ * @example
+ * config.filebrowserWindowHeight = 580;
+ * @example
+ * config.filebrowserWindowHeight = '50%';
+ */
