function CoolOver(lnk) {
      lnk.style.backgroundColor = "cornflowerblue"
      lnk.style.color = "white" 
  }
function CoolOut(lnk) {
      lnk.style.backgroundColor = "LightSteelBlue"
      lnk.style.color = "mediumblue"
  }