var fDesc=new Array();
fDesc[0] = "Lodge Vault is a property management system for resorts, lodges, and other small businesses in the hospitality industry. It provides word processing, customer resource management, accounting, and reservation management functionality all in one easy-to-use desktop application.
Customers enjoy the following benefits from using our product:
* Lower Total Cost of Ownership – no 3rd party hosting or commissions required
* Improved ROI - no need to purchase additional word processing or customer management software
* Easy-to-use and learn
* Access to more information – all of your data is stored in one place on your local machine
* Increased accuracy - you will know at a glance what units are available with an intuitive interface
* Speed - You can manage and track the movement of reservations from booking through departure";
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 = '';
}
}