diff --git a/src/java/org/lwjgl/util/applet/AppletLoader.java b/src/java/org/lwjgl/util/applet/AppletLoader.java
index f9686288..f5307f73 100644
--- a/src/java/org/lwjgl/util/applet/AppletLoader.java
+++ b/src/java/org/lwjgl/util/applet/AppletLoader.java
@@ -97,9 +97,11 @@ import sun.security.util.SecurityConstants;
* The following applet parameters are required:
*
* - al_main - [String] Full package and class the applet to instantiate and display when loaded.
+ * - al_jars - [String] Comma seperated list of jars to download.
+ *
*
- al_logo - [String Path of of the logo resource to paint while loading.
* - al_progressbar - [String] Path of the progressbar resource to paint on top of the logo, width clipped by percentage.
- * - al_jars - [String] Comma seperated list of jars to download.
+ *
*
- al_windows - [String] Jar containing native files for windows.
* - al_linux - [String] Jar containing native files for linux.
* - al_mac - [String] Jar containing native files for mac.
@@ -115,14 +117,16 @@ import sun.security.util.SecurityConstants;
* - al_cache - [boolean] Whether to use cache system. Default: true.
* - al_debug - [boolean] Whether to enable debug mode. Default: false.
* - al_prepend_host - [boolean] Whether to limit caching to this domain, disable if your applet is hosted on multple domains and needs to share the cache. Default: true.
- *
+ *
*
- al_windows64 - [String] If specified it will be used instead of al_windows on 64bit windows systems.
* - al_windows32 - [String] If specifed it will be used instead of al_windows on 32bit windows systems.
* - al_linux64 - [String] If specifed it will be used instead of al_linux on 64bit linux systems.
* - al_linux32 - [String] If specifed it will be used instead of al_linux on 32bit linux systems.
- *
+ *
*
- boxbgcolor - [String] any String AWT color ("red", "blue", etc), RGB (0-255) or hex formated color (#RRGGBB) to use as background. Default: #ffffff.
* - boxfgcolor - [String] any String AWT color ("red", "blue", etc), RGB (0-255) or hex formated color (#RRGGBB) to use as foreground. Default: #000000.
+ *
+ *
- lwjgl_arguments -
[String] used to pass the hidden LWJGL parameters to LWJGL e.g. ("-Dorg.lwjgl.input.Mouse.allowNegativeMouseCoords=true -Dorg.lwjgl.util.Debug=true").
*
*
* @author kappaOne