it's the javascript code to open the chat window,
for example:
if your chat page with the flash client is:
http://yourwebsite/chat.html
and you want to open the chat page in this page:
http://yourwebsite/abc.html
first, please insert the below javascript code to abc.html file:
Code:
<script language="Javascript" type="text/javascript">
<!--
function openChat()
{
window.open('http://yourwebsite/chat.html', '_123flashchat', 'HEIGHT=476,resizable=yes,WIDTH=634');;
}
//-->
</script>
then in abc.html , add a link like this:
Code:
<a href="javascript:openChat()">Chat</a>