function Active(what) {
  if(!document.layers) {
    what.style.backgroundColor='#FFFBD9';
    what.style.borderColor='#000000';
  }
}

function NotActive(what) {
  if(!document.layers) {
    what.style.backgroundColor='#FFFFFF';
    what.style.borderColor='#000000';
  }
}