DOM2 CSS Interface

function depress() {
  this.style.position="relative";
  this.style.left="3px;"
  this.style.top="3px;"
  this.style.color="#660000";
}

function undepress() {
  this.style.position="relative";
  this.style.left="0px;"
  this.style.top="0px;"
  this.style.color="#000099";
}