// this is the main Crafts Today site JavaScript code

function button_off(button_name) {
  window.status = ' ';
  if (document.getElementById) {
   button_id = document.getElementById(button_name);
   button_id.style.background='#F9F402';
   button_id.style.color='#334597';
  }
  return true;
}

function button_on(button_name, status_text) {
  window.status = status_text;
  if (document.getElementById) {
   button_id = document.getElementById(button_name);
   button_id.style.background='#334597';
   button_id.style.color='#F9F402';
  }
  return true;
}

function ws_change(status_text) {
  if(status_text) {
    window.status = status_text;
  }
  else {
    window.status = ' ';
  }
  return true;
}
