﻿function mouseover_button(button) {
button.style.backgroundColor='#ffff00';
button.style.color='#ff0000';
}


function mouseout_button(button){
button.style.backgroundColor='#663300';
button.style.color='#FFFFFF';
}