var fDesc=new Array();
fDesc[1] = "and more to manage a business like that. This program enables you to organize everything in your business, including machines, clients, employees, products, etc. and allows you to have everything under control";
fDesc[2] = "your business organized and functioning properly. The application features a nice and very intuitive user interface. It allows you to monitor all the computers in your business providing visual information about every user.";
fDesc[3] = "task of protecting, managing the employees and customers of a cybercafe. Along with that, it also manages the secretive data stored in a computer by securing the access to it.";
fDesc[4] = "licenses sold worldwide, Smartlaunch 3.5 is the perfect solution for the operations of any professional cyber cafe. Smartlaunch helps you to handle customer billing, security issues, financial and statistical reports, computer utilities and much more. Combined, these features will save you time and money.";
fDesc[5] = "and post-paid sessions, timers, pricing, point-of-sale, a terminal protection, print charging, reports, traffic calculation, etc.";
fDesc[6] = "computer such as to lock, unlock, restart and shutdown remote computer.";
fDesc[8] = "operators to run the gaming center or LAN cafe business. This freeware requires SiteKiosk client software";
fDesc[9] = "strict control over your business. The program features a simple (and unattractive) user interface that allows you to customize almost everything in it to satisfy your needs.";
fDesc[14] = "control of the paid time, control of the work of managers.";
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 = '...';
}
}