
function funcTable(obj,color) { 
	
	document.getElementById(obj).style.backgroundColor= color;

} 
//mouseover時改變對應表格列的背景色 
function funcAreaIn(obj,obj2,color) { 
	showcity(obj2);
	allcolorChange();
	document.getElementById(obj).style.backgroundColor= color;
	
} 
//mouseout時改變對應表格列的背景色 
function funcAreaOut(obj,obj2,color) { 

	document.getElementById(obj).style.backgroundColor= color;
} 
//重新設定每一個Center/island、South Area、North Area、East Area的表格顏色
function allcolorChange()
{
		document.getElementById("TaichungList").style.backgroundColor= "#ffffff";
		document.getElementById("ChanghuaList").style.backgroundColor= "#ffffff";
		document.getElementById("NantouList").style.backgroundColor= "#ffffff";
		document.getElementById("YunlinList").style.backgroundColor= "#ffffff";
		document.getElementById("ChiayiList").style.backgroundColor= "#ffffff";
		document.getElementById("MatsuList").style.backgroundColor= "#ffffff";
		document.getElementById("KinmenList").style.backgroundColor= "#ffffff";
		document.getElementById("PenghuList").style.backgroundColor= "#ffffff";
		document.getElementById("KeelungList").style.backgroundColor= "#ffffff";
		document.getElementById("TaipeiCityList").style.backgroundColor= "#ffffff";
		document.getElementById("TaipeiList").style.backgroundColor= "#ffffff";
		document.getElementById("TaoyuanList").style.backgroundColor= "#ffffff";
		document.getElementById("HsinchuList").style.backgroundColor= "#ffffff";
		document.getElementById("MiaoliList").style.backgroundColor= "#ffffff";
		document.getElementById("TainanList").style.backgroundColor= "#ffffff";
		document.getElementById("KaohsiungCityList").style.backgroundColor= "#ffffff";
		document.getElementById("KaohsiungList").style.backgroundColor= "#ffffff";
		document.getElementById("PingtungList").style.backgroundColor= "#ffffff";
		document.getElementById("HengchunList").style.backgroundColor= "#ffffff";
		document.getElementById("YilanList").style.backgroundColor= "#ffffff";
		document.getElementById("HualienList").style.backgroundColor= "#ffffff";
		document.getElementById("TaitungList").style.backgroundColor= "#ffffff";
		
}


