var fDesc=new Array();
fDesc[0] = "PromptStart is a small, fast utility that helps to access programs and documents quickly in Windows start menu.
Main features:
- simple, fast, requires only 5MB system memory when running
- runs only in foreground - does not waste system resources (memory, CPU) when not in use
- supports two search methods: from word beginnings and full text search
- search in Programs and recent documents folder
- saves the search window position and size
- freeware, free for any type of use
- does not contain adware, spyware or any other malicious software components";
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 = '';
}
}