var fDesc=new Array();
fDesc[0] = "PowerPro lets you take control of how you use Windows. You can run commands and configure your system any way you want.
PowerPro gives you a compact and powerful launch bar, menu, hot key, and scripting.
Main features:
- Running commands: Tool bars, tray icons, hot keys, mouse actions, menus, timer, scheduler.
- Controlling other program's windows: Close, minimize, maximize, roll-up to caption, tray minimize, position.
- Providing utility functions: Send keystrokes to programs, run commands when windows first open, virtual desktops, clipboard extender, keyboard macros, shutdown, show all folder files in a menu, sounds, wallpaper, and screensaver activation and randomization.
- A powerful scripting language.";
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 = '';
}
}