var fDesc=new Array();
fDesc[0] = "Seesmic Look is a special way to immerse yourself in the real-time web.
Optimized for Windows 7, this innovative tool comes with a smart interface that allows you to feel the pulse of millions of users or be inspired by individuals of your specific interest.
Beginners learning to understand real-time can stay engaged and connected without even logging into Twitter, while experienced users can take advantage of Look's powerful features in creative and imaginative ways.
A Twitter client like no other. A great way to experience the real-time web.";
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 = '';
}
}