var fDesc=new Array();
fDesc[0] = "Keybreeze tries to simplify keyboard usage in Windows.
It is a program with a simple text field, where you can type in the name of files, folders, etc.. It automatically searches for the particular item. This is like the new Windows 7 start menu. It will be useful for Windows XP users.
But the program has additional features. We can search Youtube, Google, Wikipedia, etc. We can automate tasks, create sticky notes, etc.";
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 = '';
}
}