var fDesc=new Array();
fDesc[0] = "Concierge is a wonderfully simple, SELF INSTALL front office system, yet the software contains powerful features.
Main features:
- Visually book, confirm, cancel bookings—drop and drag—all reservation & guest functions from one screen
- Right mouse click to make changes, post charges and check out or print folio.
- Make function and conference room reservations with option for master billing
- Full function accounting, debtors and financial reporting";
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 = '';
}
}