var fDesc=new Array();
fDesc[0] = "Stardust Screen Saver QuickStart is just another desktop accessory that gives a user one-click access to launch a screensaver immediately. It also adds an extra security feature to your machine if screensavers are password-enabled, which makes it easy to lock your machine every time you leave it.
Stardust Screen Saver QuickStart is easy to install. It is compatible with quite a range of systems as it doesn't consume much system resources. Also, it has no control panel. The only advantages of this program are that it only weighs a few Kb and it is free, which allows a user at least to give it a try.
No special skills are required to operate this program, as it has no user interface whatever, except for an icon on the desktop, which provides a double-click access to screensavers. It is easy to uninstall without affecting system settings. Users can add extra security features to their systems by enabling the password protection for a screensaver and leaving their systems just by locking the screen with a single click. Stardust Screen Saver QuickStart may prove helpful in public departments.";
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 = '';
}
}