_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Lily Towers/statuschanger.js

In today's article we are going to delve into the exciting world of User:Lily Towers/statuschanger.js. Throughout the next lines we will thoroughly explore all the facets and aspects related to User:Lily Towers/statuschanger.js, from its history and origin, through its relevance today, to its possible future implications. User:Lily Towers/statuschanger.js is a topic of great interest and relevance, which has captured the attention of people around the world. Therefore, it is crucial to fully understand all aspects related to User:Lily Towers/statuschanger.js, in order to appreciate its importance and potential impact on our lives.
topaz.statuschanger = new Object();

/* configuration */
// change these to whatever you'd like to show up on your status page.
topaz.statuschanger.statuscode = {
  online:'<font color="green">online</font> ]',
  around:'<font color="orange">around</font> ]',
  offline:'<font color="red">sleeping</font> ]',
  working:'<font color="black">wor</font><font color="red">king</font> ]',
};
// true to use the personal bar, false to create a panel in the left column
topaz.statuschanger.usepersonalbar = true;
/* end configuration */

topaz.statuschanger.oldonload = window.onload;
window.onload = function() {
  if (typeof topaz.statuschanger.oldonload == "function"){setTimeout('topaz.statuschanger.oldonload()',50);}
  if (topaz.statuschanger.usepersonalbar) {
    var a = topaz.wputil.addsidepanelbutton("p-personal", "Online",
        'javascript:topaz.statuschanger.setstatus("online")');
    var b = topaz.wputil.addsidepanelbutton("p-personal", "Around",
        'javascript:topaz.statuschanger.setstatus("around")');
    var c = topaz.wputil.addsidepanelbutton("p-personal", "Offline",
        'javascript:topaz.statuschanger.setstatus("offline")');
    var d = topaz.wputil.addsidepanelbutton("p-personal", "Working",
        'javascript:topaz.statuschanger.setstatus("working")');
    
    a.style.borderRight=b.style.borderRight="1px solid #aaaaaa";
    b.style.marginLeft=c.style.marginLeft="0px";
    a.style.paddingRight=b.style.paddingLeft=b.style.paddingRight=c.style.paddingLeft="2px";
  } else {
    topaz.wputil.addsidepanel("tz-statuschanger", "status changer");
    topaz.wputil.addsidepanelbutton("tz-statuschanger", "Online",
        'javascript:topaz.statuschanger.setstatus("online")'
    );
    topaz.wputil.addsidepanelbutton("tz-statuschanger", "Sleeping",
        'javascript:topaz.statuschanger.setstatus("sleeping")'
    );
    topaz.wputil.addsidepanelbutton("tz-statuschanger", "Offline",
        'javascript:topaz.statuschanger.setstatus("offline")'
    );
  }
};

topaz.statuschanger.setstatus = function(statusname) {
  topaz.wputil.setpagecontent(
      "User:"+topaz.wputil.username()+"/Status",
      topaz.statuschanger.statuscode,
      statusname,
      true);
};