function cbNN(id,bg){
  if(document.layers){
      document.layers[id].bgColor=bg;
  }
  if(document.all){
      document.all[id].style.backgroundColor=bg;
  }
  if(!document.all&&document.getElementById){
      document.getElementById(id).style.backgroundColor=bg;
  }
}

function changebackimageNN(id,img){
  if(document.layers){
      document.layers[id].background.src=img;
  }
  if(document.all){
      document.all[id].style.backgroundImage="url("+img+")";
  }
  if(!document.all&&document.getElementById){
      document.getElementById(id).style.backgroundImage="url("+img+")";
  }
}
