var fDesc=new Array();
fDesc[0] = "If you want to manage your rooms/beds and reservations, and avoid double bookings, you can download and use Hotel Reservation System Lite Version. With its help, you can manage your hotel or motel easily.
Features:
- Manage Reservations, Rooms/Beds and Services
- Highly Configurable and Easy To Use
- Affordable - A One Time Price - No Hidden Costs
- Track Customers and Avoid Double Bookings
- Analyze Reservation Data
- Provide Valuable Reports
- Multi-users
- Track Reservations
- Run on Windows 98/ Windows 2000/ Windows 2003/ Windows XP/ Windows Vista/ Windows 7";
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 = '';
}
}