var fDesc=new Array();
fDesc[0] = "Portable Start Menu is a simple and free start menu application that can be installed on USB sticks or local PCs.
Organize your programs in a simple menu system and launch them via a tray icon. If you close Portable Start Menu on an USB-Stick, running applications can be closed automatically, too.";
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 = '';
}
}