After installing this mod. which works well for me! I had problems with the sidebox, so this is the code to use to make it work properly...

File : \includes\templates\template_default\sideboxes\tpl_livehelp.php
Replace
PHP Code:
<?php

  $content 
'PUT HERE YOUR JAVASCRIPT FOR HELP CENTER LIVE';
?>
with

PHP Code:
<?php
 $content 
'';
 
$content .= '<div id="' str_replace('_''-'$box_id 'Content') . '" class="sideBoxContent centeredContent">';
 
$content .= "\n";
 
 
$content '<!-- BEGIN Help Center Live Code, Copyright (c) 2005 Help Center Live. All Rights Reserved -->
            PUT HERE YOUR JAVASCRIPT FOR HELP CENTER LIVE
        <!-- END Help Center Live Code, Copyright (c) 2005 Help Center Live. All Rights Reserved --><br></center>'
;

 
$content .= '<div style="clear: left;">&nbsp;</div>' "\n";
 
$content .= "\n";
 
$content .= '</div>';
?>