    
    function update() {
        xajax_AXchatUpdateBox();
        setTimeout("update()", 3000);
    }

    function askWipePassword() {
			var answer = prompt ('Enter password to wipe the chat:');
			xajax_check_wipe_password(answer);
    }

    function insName(name) {
        document.AXform.AXchatText.value = "@"+name+": ";
        document.AXform.AXchatText.focus();
    }
