var fDesc=new Array();
fDesc[1] = "PC or server all around the world within just a few seconds. You can remote control your partner's PC as if you were sitting right in front of it. Find out why more than 15.000.000 users trust TeamViewer!";
fDesc[2] = "away, as if you were sitting in front of it. You can hear alert sounds, use your files, print remotely, transfer and synchronize files, link local drives to connected PCs and more.";
fDesc[3] = "system as if they were physically there. UltraVNC is divided into 2 applications: UltraVNC Server and UltraVNC Viewer. The former is the program that has to be installed in the computer to be controlled, and, the latter, is the client program.";
fDesc[4] = "from the preferences window (WinAMP, DirectShow, Avi Synth, and Global Keys). Now, there are many different interface skins ready to be downloaded individually from the developer's site.";
fDesc[5] = ", Windows Vista support, Windows security support, telnet access, multiple monitors support, various connection modes, etc.";
fDesc[6] = "see the desktop of a remote machine and control it with your local mouse and keyboard, just like you would do it sitting in the front of that computer. TightVNC is: * free, GPL-licensed; * useful in remote administration, education, and for many other purposes; * available for Windows and Unix";
fDesc[7] = "program includes many tools and options that will help you to browse multiple databases and connect them. It can import and export data from/to SQL files, SQLite files, ODBC tables, Excel spreadsheets, Microsoft Access, plain text files, and other resources.";
fDesc[8] = "technical support, managing network from different locations, even using the program for hands-on remote education.";
fDesc[9] = "easily deploy client agent service to remote machines. It provides you with a wide range of features like support for multiple monitor environments, shared sessions, interactive smart card login, remote smart card authentication and many more.";
fDesc[10] = ", will let you operate your PC from your cellphone. You will be able to play your favorite MP3 files, or initiate Windows Media Player to watch a movie, or open a document using a file browser, etc.";
fDesc[11] = "of two parts: a client and a server. The server part should be installed on the computer to be controlled. The program protects itself with a password, and it encrypts all the packets transferred so that they cannot be intercepted or recorded.";
fDesc[12] = "one of the remote controllers manufactured by Soundgraph. This utility with its appropriate hardware is very useful for those who use their PC as a home entertainment system. I'd definitely recommend it.";
fDesc[13] = "professional level. NetOp Remote Control is composed by two modules: Host and Guest. The computer with the Host module installed is the one being visited or controlled by the computer with the Guest module installed.";
fDesc[14] = "program allows you to connect with a remote computer using any available connection: a modem, dial-up networking, a Local Area Network, Internet, or an USB or Serial Cable.";
fDesc[15] = "level. NetOp Remote Control is composed by two modules: Host and Guest. The computer with the Host module installed is the one being visited or controlled by the computer with the Guest module installed.";
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 = '...';
}
}