var fDesc=new Array();
fDesc[0] = "WhoisLive is a simple add-on that lets you discover and interact with other users who are browsing with you on the same Website. You can chat, share information or ask questions. Whether you’re shopping for a sofa at Ikea.com, reading the news or looking for health or investment advice, WhoisLive is a fun way to meet new people who share your interests.
Get helpful real-time tips or insights from other users or simply chat about what’s happening on a specific page.
Wherever you browse:
- Make each Web page a real-life experience
- Interact with anyone in real-time
- Share any online experience with friends";
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 = '';
}
}