<!--
/*
mouse_over.js
not used for form submit table

*/
function over_cell(which_cell)
{
changer = document.getElementById(which_cell);
changer.style.backgroundColor = "#D9ECF2";
}

function off_cell(which_cell)
{
changer = document.getElementById(which_cell);
changer.style.backgroundColor = "#6FB7CE";
}


// -->