var fDesc=new Array();
fDesc[0] = "Tasks.Show is a developer resource application, where you get the full source code of a complete and fully functional application that is using Windows 7 unique features like Windows Touch and the Windows Taskbar.
Tasks.Show provides you with a visual representation of how busy you are. Tasks display on a timeline according to project and size, and estimated amount of work. The timeline view at the bottom of the screen also gives you sense of how your to-do list looks over time, and just how busy you are.";
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 = '';
}
}