diff -rup views/handlers/views_handler_field.inc views_new/handlers/views_handler_field.inc
--- views/handlers/views_handler_field.inc	2010-08-14 05:41:24.000000000 +1000
+++ handlers/views_handler_field.inc	2010-09-17 11:12:13.683129761 +1000
@@ -259,6 +259,16 @@ class views_handler_field extends views_
           'edit-options-alter-make-link' => array(1)
         ),
       );
+      $form['alter']['rel'] = array(
+        '#title' => t('Rel Text'),
+        '#type' => 'textfield',
+        '#default_value' => $this->options['alter']['rel'],
+        '#description' => t('Include Rel attribute for use in lightbox2 or other javascript utility.'),
+        '#process' => array('views_process_dependency'),
+        '#dependency' => array(
+          'edit-options-alter-make-link' => array(1)
+        ),
+      );
       $form['alter']['prefix'] = array(
         '#title' => t('Prefix text'),
         '#type' => 'textfield',
@@ -613,6 +623,11 @@ class views_handler_field extends views_
       $options['attributes']['class'] = $class;
     }
 
+    $rel = strtr($alter['rel'], $tokens);
+    if ($rel) {
+      $options['attributes']['rel'] = $rel;
+    }
+
     $target = check_plain(trim(strtr($alter['target'],$tokens)));
     if (!empty($target)) {
       $options['attributes']['target'] = $target;
