// JavaScript Document

function high(id) {
document.getElementById(id).style.color = "#E95B74";
}
function low(id) {
document.getElementById(id).style.color = "#666";
}