




function NavigationSection(windowPageMapping, selectionLayerName, selectionPopUpLayerName, navigationIcon, currentSetting)
{
	this.windowPage = windowPageMapping;
	this.layerName = selectionLayerName;
	this.popUpLayerName = selectionPopUpLayerName;
	this.iconFileLocation = navigationIcon;
	this.setting = currentSetting;
	this.selectionLayer = null;
	this.layer = null;
	this.icon = null;
	this.startingWindowChange = false;
	
	this.beginWindowModeChange = beginWindowModeChange;
	this.showIcon = showIcon;
	this.hideIcon = hideIcon;
	
	this.windowPage.windowRef = undefined;
	
	return this;
}




function WindowPageMapping(windowName, pageLink, multiWindowNavigationStyle, windowWidth, rootWindowFlag)
{
	this.name = windowName;
	this.link = pageLink;
	this.style = multiWindowNavigationStyle;
	this.isRoot = rootWindowFlag;
	this.width = windowWidth;
	this.windowRef = undefined;
	
	return this;
}


