var fDesc=new Array();
fDesc[0] = "Deskloops is a friendly little program that helps you view and organize all the open windows on your desktop. Deskloops automatically aligns your windows side by side into a virtual loop. Move your mouse to quickly spin the loop to the window you want. The drop-down Strip shows all your open windows as thumbnails. From the Strip, you can do anything with your loop: save, organize, edit, search and even e-mail it to others. You can see all your open windows anywhere anytime.
Simple. Fast. Easy. Once you";
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 = '';
}
}