// JavaScript Document
function switchTab(identify,index,count) {
	for(i=0;i<count;i++) {
		var CurTabObj = document.getElementById("Tab_"+identify+"_"+i) ;
		var CurListObj = document.getElementById("List_"+identify+"_"+i) ;
		if (i != index) {
			CurTabObj.className = "on1";
			CurListObj.style.display = "none";
		}
		else
		{
	
	        CurTabObj.className = "on";
			CurListObj.style.display = "block";
		}
		}
}
