function greenhi(id){
  if (document.all){
    document.all[id].style.borderColor = '#FFFFFF';
  } else if (document.getElementById){
    document.getElementById(id).style.borderColor = '#FFFFFF';
  }
}

function greenlo(id){
  if (document.all){
    document.all[id].style.borderColor = '#008000';
  } else if (document.getElementById){
    document.getElementById(id).style.borderColor = '#008000';
  }
}