Title: [JavaScript] function sendCommand(command) { swfobject.getObjectById('lightIRC').sendComma Author: nanyobis Pastebin link: http://pastebin.com/GRXppGYS First Edit: Friday 7th of February 2014 04:41:39 PM CDT Last Edit: Friday 7th of February 2014 04:41:39 PM CDT function sendCommand(command) {   swfobject.getObjectById('lightIRC').sendCommand(command); } function sendMessageToActiveWindow(message) {   swfobject.getObjectById('lightIRC').sendMessageToActiveWindow(message); } function setTextInputContent(content) {   swfobject.getObjectById('lightIRC').setTextInputContent(content); } function onChatAreaClick(nick, ident, realname) {   //alert("onChatAreaClick: "+nick); } function onContextMenuSelect(type, nick, ident, realname) {   //alert("onContextMenuSelect: "+nick+" for type "+type); } function onServerCommand(command) {   return command; } window.onbeforeunload = function() {   swfobject.getObjectById('lightIRC').sendQuit(); } for(var key in params) {   params[key] = params[key].toString().replace(/%/g, "%25"); }