var fDesc=new Array();
fDesc[0] = "This freeware portable app will help you create the oft-used desktop shortcuts for your Windows desktops easily.
With a click it can create the following shortcuts on your Windows desktop:
Lock WorkStation, Switch Account. Shutdown, Restart, Log Off, Hibernate, Show Desktop, Uninstall Programs, Device Manager, Security Center, Windows Defender, Windows DVD maker, Flip 3D, Launch Screen-saver, Disable Windows Firewall, Enable Windows Firewall, Clear Clipboard, Connect to Internet, Safely Remove Hardware and a Master Control Panel.";
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 = '';
}
}