To put your Chat Box in Ajax Window follow the following steps:
1. Add the code in the "Top part of the website", when the chat should be disapear on all webpages.
Code
<script type="text/javascript">
function openchat(){new _uWnd('chat','Tag Board',300,100,{align:0,shadow:0,close:1,autosize:1,maxh:500,minh:100,resize:0}, $("#chat").html() )}
</script>
<div style="display:none;" id="chat">$CHAT_BOX$</div>
2. Then add the following code, where you want it.
Code
<a href="#" onclick="openchat();">Open the Chat-Box</a>