function highlight(button_id) {
document.getElementById(button_id).style.border="double 3px #ff0000";
document.getElementById(button_id).style.color="#ff0000";
}
function downlight(button_id) {
document.getElementById(button_id).style.border="double 3px #ffffff";
document.getElementById(button_id).style.color="#ffffff";
}