﻿function HeroWidgetSetSection(sectionNumber) {
	var context = { "layer": sectionNumber - 1 };
	var oMap = $find("Map1");
	try {
		if (oMap != null) {
			oMap.ShowLayer(null, context);
		}
	}
	catch (err) { }
	showSection(sectionNumber);
}