var fDesc=new Array();
fDesc[1] = "and plant them in three different pots situated in a virtual grow room. Then, you´ll have to take care of that seeds, watering them. They will germinate and begin their life cycle, determined by their genetic structure.";
fDesc[2] = "fuzzy matching algorithm that can find duplicate filenames and tags even when they are not exactly the same.";
fDesc[3] = "it can also find duplicates among pictures of different kind (PNG, JPG, GIF etc..) and quality.";
fDesc[5] = "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[7] = "plant is regarded as one of the worst weeds in Australia because of its invasiveness, potential for spread, and environmental impacts.";
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 = '...';
}
}