var fDesc=new Array();
fDesc[1] = "millions of people in existing audio and video chat rooms, or create a video-conference of your own to bring together other PalTalk users with similar interests. You'll enjoy 6 full video windows of your friends while communicating in chat rooms.";
fDesc[2] = "11 new security updates. One of these updates are related to vulnerability in Excel named MS08-043, (KB 954066). Please keep in mind that this security update replaces the following security: 946974 MS08-014: Description of the security update for Excel 2007: March 11, 2008";
fDesc[3] = "programs on Microsoft Windows XP or Server 2003 without the need for changing the system wide locale by emulation of the code-page needed by these programs.";
fDesc[4] = "provide basic system functionality under Windows XP operating system. WARNING!: Because the computer is optimized for use with Windows Vista® operating system, some functionality will be lost under Windows XP operating system.";
fDesc[5] = "packages. You can simply backup your activation keys to a file or print.";
fDesc[6] = "tool for shutting down Windows based computers at a given time. We can select the way we want the computer to be shut down.";
fDesc[7] = "Directory integration; server management; user management; service monitoring and control; event management; job and task scheduling; printer management; disk and file administration and reporting and exporting.";
fDesc[8] = "an Internet connection, without being blocked by corporate firewalls or requiring administrative rights to install software on the remote device. No previous relationship with the system is required, but permission from the end user is mandatory.";
fDesc[9] = "system. It is very easy and friendly to handle; it provides several tools to offer a complete solution managing tasks and processes and runs on Windows 2000 and higher Windows platforms and does not require administrative rights to run.";
fDesc[11] = "utilize functions for remote connection: Remote Desktop, Remote Shell, Commands, LAN FS Commander, and Task Manager. LAN FS must be running in the computers you wish to work with. Remote desktop must be activated in the System Properties for LAN FS to work.";
fDesc[12] = "configured to prevent non-administrative users from unlocking an administrator?s session and restrict program configuration.";
fDesc[13] = "searching, creating, editing, deleting records and more. It has support for building multi-lingual scripts and the possibility of filtering and choosing which tables and fields to display. The program doesn't require any coding skills at all.";
fDesc[14] = "company from a single comprehensive, highly flexible software application.";
fDesc[15] = "create a list of programs you need to run with other's users account.";
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 = '...';
}
}