<!--
function row_over(eButton)	{
	eButton.style.backgroundColor = "#9999FF";
	eButton.style.cursor = "hand";
}

function row_out(eButton) {
	eButton.style.backgroundColor = "#FFFFFF";
	eButton.style.cursor = "default";
}
-->