diff --git a/terms_of_use.module b/terms_of_use.module
index 2437e3d..3d239f5 100644
--- a/terms_of_use.module
+++ b/terms_of_use.module
@@ -80,7 +80,7 @@ function terms_of_use_form_user_register_form_alter(&$form, $form_state) {
     if ($node->nid) {
       // Show terms on the registration for or just a links
       if (strpos($checkbox_label, '@link') !== FALSE) {
-        $checkbox_label = str_replace('@link', l($node->title, 'node/' . $node->nid), $checkbox_label);
+        $checkbox_label = str_replace('@link', l($node->title, 'node/' . $node->nid, array('attributes' => array('target' => '_blank'))), $checkbox_label);
         $show_terms = FALSE;
       }
       // Adding the nodes body by theme_terms_of_use() to the fieldset if desired.
