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] = "facilities and remote administration of computers. Security features included to help reduce the likelihood of customers altering computer settings.";
fDesc[4] = "public access PCs. Accounts facilities and remote administration of computers. Security features included to help reduce the likelihood of customers altering computer settings.";
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] = "quite suitable for small environments and low-end computers. The user interface is very old-styled, with almost no graphics nor visual aids. Moreover, the default background is somewhat creepy. The server-side software is not for free.";
fDesc[7] = "operators to run the gaming center or LAN cafe business. This freeware requires SiteKiosk client software";
fDesc[8] = "You can create an Internet Kiosk for cybercafe, library information terminal, in-store terminal or restrict children activities on home PC, etc.";
fDesc[9] = "control of the paid time, control of the work of managers.";
fDesc[10] = "computers in the network are under constant monitoring.";
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 = '...';
}
}