		var selectedPropertyTabIndex = 0;
		function togglePropertyTabs1(tabIndex, tabCount) {
			var propertyTabCount = 0;
			for (var i = 0; i < tabCount; i++) {
				var tabObj = document.getElementById("tab" + i);
				if (tabObj == null) {
					continue;
				}
				propertyTabCount++;
			}
			for (var i = 0; i < propertyTabCount; i++) {
				deactivateTab1(i, propertyTabCount);
			}
			activateTab1(parseInt(tabIndex), propertyTabCount);
			selectedPropertyTabIndex = tabIndex;
		}
		
		function activateTab1(tabIndex, tabCount) {
		var tabObj = document.getElementById("tab" + tabIndex);
		if(tabObj != null) {
			tabObj.className = "nemTabSetTabOn";
		}
		var tabSep_1 = document.getElementById("tabSeparator" + tabIndex);
		if(tabSep_1 != null) {
			if (tabIndex == 0) {
				tabSep_1.className = "nemTabSetTabSeparatorLA";
			} else {
				tabSep_1.className = "nemTabSetTabSeparatorMIA";
			}
		}
		
		var tabSep_2 = document.getElementById("tabSeparator" + (tabIndex + 1));
		if(tabSep_2 != null) {
			if (tabIndex < tabCount) {
				tabSep_2.className = "nemTabSetTabSeparatorMAI";
			} else {
				tabSep_2.className = "nemTabSetTabSeparatorRA";
			}
		}
	}
	
	function deactivateTab1(tabIndex, tabCount) {
		var tabObj = document.getElementById("tab" + tabIndex);
		if(tabObj != null) {
			tabObj.className = "nemTabSetTabOff";
		}
			
		var tabSep_1 = document.getElementById("tabSeparator" + tabIndex);
		if(tabSep_1 != null) {
			if (tabIndex == 0) {
				tabSep_1.className = "nemTabSetTabSeparatorLI";
			} else {
				tabSep_1.className = "nemTabSetTabSeparatorMII";
			}
		}
		
		var tabSep_2 = document.getElementById("tabSeparator" + (tabIndex + 1));
		if(tabSep_2 != null) {
			if (tabIndex < tabCount) {
				tabSep_2.className = "nemTabSetTabSeparatorMII";
			} else {
				tabSep_2.className = "nemTabSetTabSeparatorRI";
			}
		}
	}
