var fDesc=new Array();
fDesc[0] = "Ezy Hotel Manager is administration system for guest houses/ lodges; bed and breakfasts, hotels and motels.
It has the following features:
User name and Password protected system.
Audit trail i.e. who captured what and when.
Access control i.e. grant/revoke access to modules.
Search and query functionality.
Reservation / Quotation module.
Converts a quote to a reservation.
Day End Procedures.
Loyalty point modules.
Email / Fax / SMS customer invoice.
Petty Cash Expenses module.
Date format selection (dd/mm/yy, mm/dd/yy, yy/mm/dd).
Auto discount schedule.
Payment deadline setting.
Pie, Bar, Line and Area charts.
Unlimited Guest History.
Automatically cancel unpaid or unconfirmed bookings.
Annual Turnover Report.
Room Availability Report.
Customer loyalty points Report .
Customer statement Debt Aging Report.
All reports can be exported to PDF, Excel etc .
Hotel Broacher and directions sending.
Backup and Restore.
Automatically send a backup to remote site.";
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 = '';
}
}