var fDesc=new Array();
fDesc[0] = "Windows Password Recovery is a safe password reset tool for you to reset lost or forgotten Windows password. Simply burning a bootable CD/DVD, and boot Windows from CD/DVD to reset your password. By burning a bootable CD/DVD or USB Flash Drive, you can:
1. Reset Windows local and Domain password
2. Change Windows local and Domain password
3. Create new Windows local and Domain user accounts";
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 = '';
}
}