Right.. my bad.
You'll have to replace this part, with something else:
PHP Code:
function onOpenSupport()
{
if (Support.visible == false) triggerServer("gui", name, "getTicketData");
else Support.visible = false;
}
For example:
PHP Code:
function onKeyPressed(keycode, keychar)
{
if (keychar == "o") {
if (Support.visible == false) triggerServer("gui", name, "getTicketData");
else Support.visible = false;
}
}