var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "and post-paid sessions, timers, pricing, point-of-sale, a terminal protection, print charging, reports, traffic calculation, etc.";
fDesc[4] = "computer such as to lock, unlock, restart and shutdown remote computer.";
fDesc[5] = "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[6] = "(internet) terminals against manipulations. This version comes with tons of features. Download the free evaluation copy now.";
fDesc[7] = "operators to run the gaming center or LAN cafe business. This freeware requires SiteKiosk client software";
fDesc[9] = "installed programs, which can be accessed through Start Button.";
fDesc[10] = "including coin mechanisms, printers, note validators, barcode readers and magnetic card readers.";
fDesc[11] = "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 = '...';
}
}