Index: css/webfm.css
===================================================================
--- css/webfm.css	(revision 507)
+++ css/webfm.css	(working copy)
@@ -30,6 +30,7 @@
 #webfm-attach table { width:94%; font-weight: normal; font-size: 8pt; margin: 0 auto; cursor: default; background-color: #f0f0f0; border: 2px solid #d0d0d0; }
 #webfm-attach td { border-bottom: 1px solid #d8d8d8; }
 #webfm-attach img { margin-left: 5px; }
+#webfm-no-attachments { width: 99%; text-align: center; }

 #wfmatt-wrapper .upload-msg-err { padding-top:5px; color:red; }
 #wfmatt-wrapper .upload-msg { padding-top:5px; color:green; }
Index: js/webfm.js
===================================================================
--- js/webfm.js	(revision 507)
+++ js/webfm.js	(working copy)
@@ -60,6 +60,7 @@
 Webfm.js_msg["metadata"] = Drupal.t("Metadata");
 Webfm.js_msg["fix_input"] = Drupal.t("correct input");
 Webfm.js_msg["perm"] = Drupal.t("File Permissions");
+Webfm.js_msg["no-attachments"] = Drupal.t("No files attached.");

 Webfm.meta_msg = [];
 Webfm.meta_msg["fid"] = Drupal.t("fid");
@@ -1942,6 +1943,9 @@
       }
     }
     Webfm.$(Webfm.attachFormInput).value = new_attach_arr.join(',');
+    if ( ! new_attach_arr.length ) {
+      Webfm.attach.noAttachments(true);
+    }
   }
 }

@@ -2142,6 +2146,8 @@
       var filerow = new Webfm.filerow(Webfm.attachObj.body, result.data, 'attach', '', true, Webfm.menuHT.get('det'), Webfm.attachObj.eventListeners);
       var elInput = Webfm.$(Webfm.attachFormInput);
       elInput.setAttribute('value', (elInput.getAttribute('value')?elInput.getAttribute('value')+',':'') + result.data.id);
+      // Clear no file msg
+      Webfm.attach.noAttachments(false);
     } else
       Webfm.alrtObj.msg(result.data);
   } else {
@@ -2685,6 +2691,8 @@
             elInput.setAttribute('value', (elInput.getAttribute('value')?elInput.getAttribute('value')+',':'') + result.data[i].id);
           }
         }
+      } else {
+    	Webfm.attach.noAttachments(true);
       }
     } else
       Webfm.alrtObj.msg(result.data);
@@ -2693,6 +2701,16 @@
   }
 }

+// Turn on/off no attachments display as needed.
+Webfm.attach.noAttachments = function ( show ) {
+  if ( show ) {
+    $('#webfm-attach').append( '<div id="webfm-no-attachments">' +
+                               Webfm.js_msg["no-attachments"] + '</div>');
+  } else {
+	$('#webfm-no-attachments').remove();
+  }
+}
+
 /**
  * Webfm.search constructor
  * 1st param is popup container obj
Index: webfm.module
===================================================================
--- webfm.module	(revision 590)
+++ webfm.module	(working copy)
@@ -1712,6 +1712,7 @@
     '#suffix' => '</div>',
     '#type' => 'radios',
     '#title' => t('Select File Versioning Option'),
+    '#description' => t('A file with the same name has already been uploaded.  Please select how you want to handle with this.'),
     '#options' => array(t('Replace and rename original copy of %filename', $filearg),
                         t('Replace and delete original copy of %filename', $filearg),
                         t('Rename new copy of %filename', $filearg),
