	v_array = ""
	function onAcao() {
		if (typeof(document.all.tb_botao.length) != "undefined")
			v_array = "[index]"
		else
			v_array = ""
	}

	function onMouseDown_Button(index) {
		onExec(index, "#ACA9AC","#ACA9AC","#ffffff","#ffffff","#003366")
	}

	function onMouseOver_Button(index) {
		onExec(index, "#ffffff","#ffffff","#ACA9AC","#ACA9AC","#003366")
	}

	function onMouseOut_Button(index) {
		onExec(index, "#CCCCCC","#CCCCCC","#CCCCCC","#CCCCCC","#000000")
	}
		
	function onExec(index, t_bg,l_bg,r_bg,bot_bg,but_bg) {
		onAcao()
		eval("td_top" + v_array + ".style.backgroundColor='" + t_bg + "'")
		eval("td_left" + v_array + ".style.backgroundColor='" + l_bg + "'")
		eval("td_right" + v_array + ".style.backgroundColor='" + r_bg + "'")
		eval("td_bottom" + v_array + ".style.backgroundColor='" + bot_bg + "'")
		eval("td_button" + v_array + ".style.color='" + but_bg + "'")
	}