var fDesc=new Array();
fDesc[0] = "The Start menu launcher for Windows provides the same functionality but with a desktop shortcut. Whether you are looking for an alternative to launch the Start menu or you want to launch the Start Menu from a Command Line, this Free Start menu Launcher can be really useful to you. When launched it displays the Start menu of your Windows Operating System";
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 = '';
}
}