--- nodeprofile.module.old	2008-08-19 20:18:36.000000000 -0500
+++ nodeprofile.module	2008-08-19 20:20:19.000000000 -0500
@@ -794,3 +794,13 @@ function nodeprofile_show_profiles($uid)
   }
   return $fields;
 }
+
+/*
+ * Adds the submission guidelines to the add form when accessed from a user profile 
+ */
+function nodeprofile_help($section) {
+  if (arg(0) == 'user' && arg(2) == 'edit' && $type = arg(3)) {
+    $type = node_get_types('type', str_replace('-', '_', arg(3)));
+    return '<p>'. filter_xss_admin($type->help) .'</p>';
+  }
+}
