diff --git a/xCAT-UI/help.php b/xCAT-UI/help.php
new file mode 100644
index 000000000..d9d5b552c
--- /dev/null
+++ b/xCAT-UI/help.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/xCAT-UI/js/help/help.js b/xCAT-UI/js/help/help.js
new file mode 100644
index 000000000..c47963ccb
--- /dev/null
+++ b/xCAT-UI/js/help/help.js
@@ -0,0 +1,27 @@
+function loadHelpPage(){
+ //create help tab
+ var tab = new Tab();
+ tab.init();
+ $('#content').append(tab.object());
+
+ //add the help content
+ var helpForm = $('
');
+ helpForm.append(
+ '' +
+ '');
+ tab.add('helpTab', 'Help', helpForm, false);
+}
\ No newline at end of file