//new script
function MakeDramatic(objElement) {
  objElement.style.color = "red"
  objElement.style.fontWeight = "bold"
  objElement.style.fontSize='18'
  }

function MakeNormal(objElement) {
  objElement.style.color = ""
  objElement.style.fontWeight = "normal"
  objElement.style.fontSize='10'
  }

