function illumidate(id){
  if(document.getElementById(id))
    document.getElementById(id).style.backgroundColor = '#333';
}
function unillumidate(id){
  if(document.getElementById(id))
    document.getElementById(id).style.backgroundColor = '#999';
}
