Love this hack. Working beautifully and am about to try your 'who in chat' hack. Got one teensy little prob tho.......
For some reasons, Mac users - using IE5.1 and 5.5 do not get the applet loading properly in the normal popup. Think it has something to do with the percentages - I customized the table so it resized the whole thing in IE, when make window tiny the table goes tiny too without any need to scroll to see things. But that doesn't work in Mac versions (or in NS6 on PC). So we put a script at top of page redirecting to a Mac friendly version if it recognised the browser was on a Mac.
Now, I pasted that script into the chatmain template, but tho it still redirected fine, it doesn't include that page as part of the intergration. So I'm figuring maybe I need to add the script to the chatmain.php, (converted to php?) so it will load either 'chatmain', or the 'chatmac' template for the mac version, in the popup.
What would be the code - I assume it'll go before the ''gettemplate chatmain'' - to assess whether the browser is on a Mac? Could I use the java script I used on the html page in the chatmain.php or do the two not mix? This is the previous code we used:
//var myURL = "url of the alternate Mac html";
//if (navigator.appName == "Microsoft Internet Explorer" &&
//navigator.appVersion.indexOf("Mac") != -1 ) {
//location = myURL; }
Thanx for any help.