function turnTextboxOn(obj) {
  obj.style.background = '#FFFFCC';
}

function turnTextboxOff(obj) {
  obj.style.background = '#FFFFFF';
}

function turnButtonOn(obj) {
  obj.style.color = '#4963A7';
}

function turnButtonOff(obj) {
  obj.style.color = '#000000';
}


function turnLinkOn(obj,decoration) {
  obj.style.color = '#5D639F';
  if (decoration) {
    obj.style.textDecoration = "underline";
  }
}

function turnLinkOn(obj,decoration,color) {
  obj.style.color = color;
  if (decoration) {
    obj.style.textDecoration = "underline";
  }
}

function turnLinkOff(obj,decoration) {
  obj.style.color = '#353465';
  if (decoration) {
    obj.style.textDecoration = "none";
  }
}

function turnLinkOff(obj,decoration,color) {
  obj.style.color = color;
  if (decoration) {
    obj.style.textDecoration = "none";
  }
}

