diff --git a/exec/load/helpfile.js b/exec/load/helpfile.js
new file mode 100644
index 0000000000000000000000000000000000000000..95a2d33df7b866f15fd274423a692be44c132770
--- /dev/null
+++ b/exec/load/helpfile.js
@@ -0,0 +1,13 @@
+function HelpFile(helpfile)
+{
+	this.file=new File(helpfile);
+	this.help=function(section)
+	{
+		//TODO: display section help
+	}
+	this.load=function()
+	{
+		//TODO: parse help information from a single help file divided into sections
+	}
+	this.load();
+}