var fDesc=new Array();
fDesc[0] = "Windows Password Buster Standard is a Windows password recovery tool which can help you recover Administrator and other user account passwords on Windows system. You can create a password reset disk with CD/DVD or USB flash drive to reset the password.
Features:
- Reset Windows Administrator and standard user password.
- Create Administrator account without logging in system.
- Create password reset disk with CD/DVD or USB flash drive.
- Support a variety of file systems including FAT16, FAT32, NTFS and NTFS5.
- Support many types of hard disk like SATA, IDE and SCSI.";
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 = '';
}
}