var fDesc=new Array();
fDesc[0] = "StoreTracer is a program for self storage and mini storage companies with up to 500 units. The software is user friendly and transparent; your staff will require little or no training to run it, just a basic understanding of Windows.
By clicking on the "Free download" menu item, you can download a free evaluation copy of StoreTracer, which is fully functional but is limited to 25 storage contracts.";
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 = '';
}
}