var fDesc=new Array();
fDesc[0] = "The application is a task manager. You can create tasks an attach it to a person, project, software package or Hardware configuration.
In the application you can see how you can customize a listview in WPF (You can also work with a data grid in the new service pack 1. The code to do this is almost the same) Layout from a Listview,
Adding Specific controls in Listview (Hyperlink), Sorting, Value Converter (date) , Adding a flexible search engine to the a grid. You can also see the implementation from a master detail screen.";
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 = '';
}
}