//------------------------------------------------------------
// Begin initialize objects for dhtml tabbing
if (!sectionLookupInited) {
	var sectionLookup = new Object();
	var sectionLookupInited = true;
}
// End initialize objects for dhtml tabbing
//------------------------------------------------------------

//------------------------------------------------------------
// Create and Initialize Section Objects
function createSectionRef(sectionName,sectionRef,elemName) {
	if (getSectionRef(sectionName) == null) {
		sectionLookup[sectionName] = new Object();
	}
	var sectionObj = sectionLookup[sectionName];
	sectionObj.sectionRef = sectionRef;
	sectionObj.elemName = elemName;
}

function getSectionRef (sectionName) {
	if (sectionLookup) {
		return sectionLookup[sectionName];
	}
}
//------------------------------------------------------------
