var fDesc=new Array();
fDesc[0] = "SC-QuickStart offers several superior methods for launching your favorite applications, opening documents/websites/folders/directories and starting common Windows tasks. Forget the start button! Now you can launch your favorite tasks and programs using SC-QuickStart's convenient control panel, a system tray menu bar or with keyboard shortcuts called hotkeys. SC-QuickStart will allow you to simplify and speed up work on your computer considerably.
Use SC-QuickStart to quickly:
Launch programs
Open folders with Explorer
Open websites (URL's) with the default browser
Open documents/files with the default registered application
Connect to/disconnect from the default internet dialup connection
Empty the recycle bin
Open 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 = '';
}
}