diff --git a/imagefield_zip.module b/imagefield_zip.module
index 65ea497..1cb0a38 100644
--- a/imagefield_zip.module
+++ b/imagefield_zip.module
@@ -517,6 +517,10 @@ function imagefield_zip_add_to_node_form(&$form, &$field_name, &$node, &$groups)
 
   // Add in the form.
   if (imagefield_zip_build_upload_form($form, $machine_name, $nice_name, $formats, $machine_node_type, $upload_mode, $fallback_mode, $weight, $field_or_group)) {
+    if ($field_or_group == 'group') {
+      global $_imagefield_zip;
+      $_imagefield_zip['groups'][] = $machine_name;
+    }
     return TRUE;
   }
   return FALSE;
@@ -578,8 +582,8 @@ function imagefield_zip_build_upload_form(&$form, $machine_name, $nice_name, $fo
         $form[$machine_name .'_zip'] = array(
           '#type' => 'item',
           '#title' => t('Add Multiple Images'),
-          '#value' => t('Your browser does not support HTML5 native upload. Try <a href="http://www.google.com/chrome/">Chrome</a>, <a href="http://www.mozilla.org/en-US/products/download.html">Firefox</a> or <a href="http://www.apple.com/safari/download/">Safari</a>.'),
-          '#prefix' => '<div class="zip-fallback-message">',
+          '#value' => t('Adding Multiple Images is not yet supported in your browser. Currently this feature requires <a href="http://www.google.com/chrome/">Chrome</a>, <a href="http://www.mozilla.org/en-US/products/download.html">Firefox</a>, or <a href="http://www.apple.com/safari/download/">Safari</a>.'),
+          '#prefix' => '<div class="zip-field zip-fallback-message">',
           '#suffix' => '</div>',
         );
         return TRUE;
@@ -632,7 +636,7 @@ function imagefield_zip_build_upload_form(&$form, $machine_name, $nice_name, $fo
     $form[$machine_name .'_zip'][$machine_name . '_upload']['#attributes'] += array(
       'accept' => $zip_mime,
     );
-    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by selecting a zip file in the dialog box.<br />Allowed image extensions in the zip: @formats. Maximum zip file size: @max_filesize', array(
+    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by selecting a zip file in the dialog box.<br />Allowed image extensions in the zip file: @formats. Maximum zip file size: @max_filesize', array(
         '@max_filesize' => $max_filesize,
         '@formats' => $formats,
         '@name' => $nice_name,
@@ -650,7 +654,7 @@ function imagefield_zip_build_upload_form(&$form, $machine_name, $nice_name, $fo
       'multiple' => 'multiple',
       'accept' => 'image/' . implode(', image/', $formats_array),
     );
-    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by holding the <strong>CTRL key and clicking multiple images</strong> in the dialog.<br />Allowed extensions: @formats with a maximum file size of @max_filesize', array(
+    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by holding the CTRL key while selecting images in the dialog box<br />Allowed extensions: @formats. Maximum filesize: @max_filesize', array(
         '@max_filesize' => $max_filesize,
         '@formats' => $formats,
         '@name' => $nice_name,
@@ -668,7 +672,7 @@ function imagefield_zip_build_upload_form(&$form, $machine_name, $nice_name, $fo
       'multiple' => 'multiple',
       'accept' => 'image/' . implode(', image/', $formats_array) . ', ' . $zip_mime,
     );
-    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by holding the <strong>CTRL key and clicking multiple images</strong> in the dialog.<br />Allowed extensions: @formats with a maximum file size of @max_filesize', array(
+    $form[$machine_name .'_zip'][$machine_name . '_button']['#suffix'] .= t('Add multiple image files to the @name @type @location by holding the CTRL key while selecting images in the dialog box<br />Allowed extensions: @formats with a maximum file size of @max_filesize', array(
         '@max_filesize' => $max_filesize,
         '@formats' => $formats . ' zip',
         '@name' => $nice_name,
@@ -679,9 +683,6 @@ function imagefield_zip_build_upload_form(&$form, $machine_name, $nice_name, $fo
 
   // Multigroup or field?
   if ($field_or_group == 'group') {
-    global $_imagefield_zip;
-    $_imagefield_zip['groups'][] = $machine_name;
-
     $form[$machine_name .'_zip']['#weight'] = $weight;
     $form[$machine_name .'_zip'][$machine_name . '_button']['#submit'] = array('content_multigroup_add_more_submit');
     $form[$machine_name .'_zip'][$machine_name . '_button']['#ahah']['path'] = 'imagefield_zip/ahah-multigroup/' . $machine_node_type . '/' . $machine_name;
