var fDesc=new Array();
fDesc[0] = "LC2.NET is a front end, windows client for Crafty Syntax Live Help.
Features:
- Instant messenger style pop-up and sound notifications from system tray.
- Minimizable to system tray.
- System tray icon changes with site status (idle, visitors, or chatters).
- Auto login features.
- Session remember window placements.
- Optional auto offline after being idle X number of minutes (configurable option).
- Ability to change online and offline status through client.
- User will stay available online even after leaving the chat page so chats can still come in while you are doing other things. Go offline to stop chats.
- Built in Google search.
- Spell check using iespell.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}