function add(text){
    var TheTextBox = document.getElementById("shoutbox");
    TheTextBox.value = TheTextBox.value + text;
    $("shoutbox").focus();
}
