var fDesc=new Array();
fDesc[0] = "Home Inventory Software with Unrivalled Power and Ease of Use.
Main Features:
- Manage your household assets
- Calculate the value of everything you own
- Categorize your assets for easy searching
- Add an unlimited number of images
- Create an unlimited number of locations and items
- Create detailed reports by location
- Scan images and receipts directly into the software
- Add videos to inventory items and locations
- Link to files (e.g. manuals, warranties, etc.)
- Create a printed inventory catalog
- Track borrowing and lending
- Manage insurance policies and claims
- Password-protect your inventory data
- Backup all of your inventory data
- Print barcode labels for your assets
- Scan barcodes to manage your inventory
- Help file with over 250 help topics
- Free lifetime product support";
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 = '';
}
}