var fDesc=new Array();
fDesc[0] = "Fill out your timesheet easily with Timy without having to rearrange your Basecamp setup.
Main features:
- Simply drag & drop projects
- Easy-reference weekly view
- Customize project colors
- Quick search through your projects
Timy is great for freelancers, small businesses and professional teams who are using Basecamp and need to track time on a daily, weekly, or monthly basis.";
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 = '';
}
}