Index: compact_forms/compact_forms.module
===================================================================
--- compact_forms/compact_forms.module	(revision 488)
+++ compact_forms/compact_forms.module	(working copy)
@@ -63,6 +63,15 @@
   }
 
   if (in_array($form_id, $form_ids) || (isset($form['#id']) && in_array($form['#id'], $css_ids))) {
+    if (isset($form['compact_forms_state']) && $form['compact_forms_state']['#state'] == FALSE) {
+      foreach ($css_ids as $key => $value) {
+        if ($value == $form['#id']) {
+          unset($css_ids[$key]);
+        }
+      }
+      return;
+    }
+    
     // Load our page requisites and JavaScript settings.
     if (!isset($loaded)) {
       _compact_forms_include_js($css_ids);
Index: compact_forms/README.txt
===================================================================
--- compact_forms/README.txt	(revision 488)
+++ compact_forms/README.txt	(working copy)
@@ -35,14 +35,21 @@
 * Configure forms to display compact in Administer >> Site configuration >>
   Compact Forms.
 
+-- ADVANCED CONFIGURATION --
 
+* If you wish to disable compact forms on a particular form, set this value in a
+  your forms definition or in a hook_form_alter:
+  
+    $form['compact_forms_state']['#disable'] = TRUE;
+
+
 -- CONTACT --
 
 Current maintainers:
 * Daniel F. Kudwien (sun) - http://drupal.org/user/54136
 
 Previous maintainers:
-* Tom Sundström (tomsun) - http://drupal.org/user/63478
+* Tom Sundstrï¿½m (tomsun) - http://drupal.org/user/63478
 
 This project has been sponsored by:
 * UNLEASHED MIND
