/*

Author: Johnc
Proj No: 50181
Proj Name: Flash Construct 2.0
Usage: Loads the help section and reloads the previous topic as required.

Date: 10/02/06

*/

// Navigates to the HTML page. Note, currently only a single page help file is supported
// for reasons cited below. If the project requires a multi-page help section and they aren't
// happy with the idea of page level hard coded links to navigate it functionality may need
// to be written to:
// - Add help to the course structure as a built topic
// - Remeber the previous topic object to return too.
// - Differentiate the help section from the normal course objects
// - Amend menu generation to not link to help topics
function _gotoHelp()
{
	contentFrame.location = this.rootPath + "content/help/help.htm";
}

// As only a single page of help was required for this project, the content frame is set
// to that page and to return the current topic object simply calls its .loadCurrentPage()
// method. As the object is not unloaded and its page number remains unchanged the previous
// page the user was visited appears.
function _returnToContent()
{
	this.loadCurrentPage();
}

