var fDesc=new Array();
fDesc[0] = "A useful application that will fix the issue of RocketDock not being able to use "Single-User Mode" on a Windows Vista Machine.
Main features:
- Fixes file creation error in RocketDock on Windows Vista/2008/7
- Packaged MSI file to allow the user to choose what they would like to install.
- Source Code Available!";
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 = '';
}
}