<!--//
function showDiv(sContentDivName) {
	document.getElementById(sContentDivName).style.display="block";
}

function hideDiv(sContentDivName) {
	document.getElementById(sContentDivName).style.display="none";
}

function showFirstDiv(){
	if ("<%=strSection %>" == "1" || "<%=strSection %>" == "2" || "<%=strSection %>" == "3" || "<%=strSection %>" == "4" || "<%=strSection %>" == "5") {
		changeDiv('<%=strSection %>');
	} else {
		changeDiv('1');
	}
}




//changeDiv(this.value);
sLinkId2 = new Array("airtight_rhc_link","bioPoll_rhc_link","vocs_rhc_link", "improve_rhc_link", "continuous_rhc_link");
	
//changeDiv(this.value);
function changeDiv(nChoice) {

	for (i=1; i<6; i++) {
		if (nChoice==i) {
			showDiv(nChoice);
			document.getElementById(sLinkId2[i-1]).className = "rhc_tabOn";		
		} else {
			hideDiv(i);
			document.getElementById(sLinkId2[i-1]).className = "rhc_tab";		
		}
	}
}
//-->