var fDesc=new Array();
fDesc[0] = "With hotComm CL, anyone can participate in, present to, or moderate an online multi-media meeting. hotComm CL is a flexible client designed for presentations and webinars in CL-enabled rooms.
Main Features:
- No need for telephone conference calls. Speak to each other over the Internet using our high-quality Voice-over-IP.
- No more preloading images to a server. Select one of the hotCam digital camera modes for content presentations. Send either a single snapshot of any content on your desktop - or send a rapid series of incremental snapshots of ANY presentation, application, or window to update dynamic content.
- Use free-floating hotPointer to illustrate your comments.
- Use hotWeb toolbar to send your meeting to specific web pages for co-browsing.
- Chat, either to everyone in the group, or privately with an individual in the meeting. And, use optional emoticons for more effect.
- For the total virtual effect, use full-motion, color-enabled video webcam option.";
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 = '';
}
}