var fDesc=new Array();
fDesc[0] = "Chatter Provider for Microsoft Outlook Social Connector is a free offering from InvisibleCRM which provides users integration between the “real-time” collaboration tool Chatter from SalesForce.com and the latest innovative offering from Microsoft, The Microsoft Social Connector, a free Outlook Add-in. It adds instant access of Chatter feeds to the library of existing Social Connector Providers including Facebook, Linkedin, MySpace and Windows Live Messenger.
Main Features :
- Follow your colleagues while communicating in e-mails
- See instant updates on Chatter postings right from Outlook
- Quick jump onto Salesforce with direct links from Outlook without a password prompt
- Unite the value of enterprise systems with connections and communications happening in social networks";
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 = '';
}
}