<!--//--><![CDATA[//><!--
function runChgbgColor(TabID){
var obj=null;
function ChgbgColor(TabID){
	var oRows = document.getElementById(TabID).getElementsByTagName("TR");
	//var oRows=document.all(TabID).all.tags("TR");
	for(var i=0;i<oRows.length;i++) {
		oRows[i].onmouseover=function(){
			//this.bgColor="#ECF0F4";
			this.style.color="#FF0000";
		}
		oRows[i].onmouseout=function(){
			//this.bgColor="#FFFFFF";
			this.style.color="#003399";
		}
		oRows[i].onmousedown=function(){
			this.style.color="#FF0000";
		}
	}
}
ChgbgColor(TabID);
}
// tab 
function tab(id,sum) {
	for (i=1; i <= sum ; i++ ) {
		if (id == i ) {
			document.getElementById("tab_sub_" + i).style.display = "block";
			document.getElementById("tab_" + i).className ="select";
		} else {
			document.getElementById("tab_sub_" + i).style.display = "none";
			document.getElementById("tab_" + i).className ="c";
		}
	}
}

//--><!]]>
