/*
*	tocEntry
*
*/

function tocEntry(parent,text,URL,levelOfIndent,statusMsg){
	this.parent = parent;                           // is this item a parent?
	this.text = text;                               // text to display
	this.URL = URL;                                 // link tied to text (optional)
	this.levelOfIndent = levelOfIndent;             // the amount of nested levels
	this.statusMsg = statusMsg;                     // descriptive text for status bar 
	this.isParent = isParent;
	return this;
	function isParent() {
		return this.parent;
	}
}

