// changing style of an id

function change(id, newClass) {
  document.getElementById(id).className=newClass;
}
