var fDesc=new Array();
fDesc[0] = "UltraHide is a free application to hide any program or window on your screen. This piece of small, yet extremely useful software application makes it very hard and puzzling for people to catch you doing things that you shouldn't be.
Being different from other windows hide tools, UltraHide allows you to set a password. Anytime anyone attempts to open a hidden window, they will be prompted to enter the password you have set, ultimately enhancing the security of your hidden windows.";
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 = '';
}
}