var fDesc=new Array();
fDesc[0] = "Swellog Inventory is a home inventory tool designed to help you keep track of your valuables and household items. Swellog Inventory create an inventory of your possessions with a MS Access database. You can record many useful information such as detail, purchase, insurance, warranty, condition, status, pictures, ... Its user-friendly interface allows to access items quickly. The explorer viewer allows you to show items grouped by categories, locations, users, contracts and more.
Main Features :
- Powerful interface with explorer
- Import inventory from text file
- Export inventory to text file
- Powerful search functions (Quick search, Multicriteria search and Fully customizable query search)
- You can associate a lot of pictures to each items.
- Reports, charts and html views.
- Backup (Compress file, on-line and CDROM)";
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 = '';
}
}