I can't show my chat to you here because it is behind a user login, it's members only.
But I can tell you about something I did for my chat. Users were getting fed-up of accidently clicking on a link somewhere on the page that had the chat screen, and then losing the chat session because they moved to a different page on the website.
So I put in a JavaScript function that would make all the HTML links on the chat page open in a new window.
Code:
function LinksInNewWindow() {
for (var i = 0; i < document.links.length; i++) document.links[i].target = '_blank';
}
Then, call the function from onload: <body onLoad="LinksInNewWindow()">