var fDesc=new Array();
fDesc[0] = "ReadyTalk Scheduler for Outlook gives you the flexibility to easily setup and start an on-demand or scheduled meeting, webinar, product demonstration or training session directly from Microsoft Outlook.
Usage of the tool:
- Sales Demos: Create on-the-fly web and audio meeting invites for your next sales demos directly from your Outlook toolbar, and automatically record the activity in Salesforce.com on the lead or contact record.
- Training: Invite your participants and schedule your next online training session without leaving Outlook.
- Collaboration: On-demand meetings started from Outlook have full access to ReadyTalk tools, like application and desktop sharing, so you can collaborate quickly.";
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 = '';
}
}