To set up a chat room on your site that pops up in its own window, you will need to insert this HTML code near the top of your page:
<script language="JavaScript">
<!--
function chat() {
window.open('http://java.anime-chat.com/apirc.html','ChatWindow','toolbar=0,scrollbars=0,resizable=1,location=0,statusbar=0,menubar=0,width=258,height=178');
}
-->
</script>
Once that's finished, you can create a link to javascript:chat(); with code like this:
<a href="javascript:chat();">Chat now on anime-chat.com</a>