﻿function mouseEnter( what ) {
  what.style.color = "#0000ff";
  what.style.background = "#ffff00";
  what.style.cursor = "pointer";
}

function mouseExit( what ) {
  what.style.color = "#0000ff";
  what.style.background = "#ffffff";
  what.style.cursor = "default";
}



