var fDesc=new Array();
fDesc[1] = "here for a listing of the differences between the applications. It is a complete solution designed to provide you with a robust";
fDesc[2] = "software system for guesthouses, small hotels, hostels, and bed and breakfasts.";
fDesc[3] = "and travel agents can achieve maximum time efficiency and best costs in processing reservations.";
fDesc[6] = ", room planning, guests, accounts, folios, agents, pricing plans, basically front office and back office hotel operations.";
fDesc[9] = "reservations software, hotel management software, hotel billing software, hotel property management software (pms). It is ideal solution for hotel having 10-100 Rooms. Main Features include. Hotel status from main screen with easy Check in Check Out Reservation Group Management/ Operations Direct Billing/ City Ledger Guest Snaps with Web cam at Various Stages of Stay Full network support Multiple rate and rate type support in single stay Comprehensive User Management Quick check-in through identification card swipe Ability to change room for a rented room on any day of the Guest Stay Well designed restore database operation for data recover at any stage Transaction management with insert, delete and restore feature Expense Management Payment Authorization (Open credit card transaction) Hotel Configuration House Keeping Lost and Found Management Guest Message Recording Address Book...";
fDesc[13] = "system for guesthouses, small hotels, hostels, and bed and breakfasts.";
fDesc[14] = ", check for available rooms, send e-mails to customers, make reservations and bookings and more. Free demo available";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}