var fDesc=new Array();
fDesc[1] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[2] = "connect to different wired and wireless networks at various locations in order to either connect to the company systems or the Internet. Without this tool, they potentially need to reconfigure and restart their computer every time they move around.";
fDesc[3] = "harmful threats on the internet.Bit Defender 2009 is a powerful pack including a proactive anti-virus and firewall, which now includes two-way protection and has a new intrusion detection system.";
fDesc[4] = "operator compatibility as part of the alliance between Microsoft and Nortel. As the previous version, it requires a centralized server called Office Commuication Server 2007 which unfortunately isnt compatible with the 2005 version";
fDesc[5] = "access your Personal Photo Gallery, keep an eye on your appointments, keep track of your Music Library, write down notes as well as having access to Breaking News, Instant Web Searches and Weather Information. There are lots of other things to add.";
fDesc[6] = "or Excel documents, Windows or Outlook Express logins that you forgot or you never knew. The program works through a step by step wizard that will ask you every data needed to retrieve the password.";
fDesc[7] = "allows you to remotely control another computer using the RFB protocol (remote frame buffer). The setup file installs two components: VNC Viewer used to work like client, and VNC Server that allows a Windows desktop to be accessed remotely using the VNC Viewer.";
fDesc[8] = "to use interface with the basics: a phone book, help button and a dialer. No additional features. To use it you will have to set up an account.";
fDesc[9] = "environment and needs. With access to Windows' hidden system options, programs can start faster, unnecessary files can be deleted from your hard drive, Internet and LAN connections will be faster, the sytem start can be accelerated, and your system will be more stable. Windows is much too complicated to be a \\"one size fits all\\" solution to computing needs. WinSpeedUp makes it easy to tune Windows to support the way you use your computer.";
fDesc[10] = "adding text, image or jpeg properties watermarks. This tool makes it amazingly simple to virtually protect your copyrights by simply adding a text or image.";
fDesc[11] = "simply going to the desktop on your system. With this application organizing and maintaining your schedules now is an effortless process for you.";
fDesc[12] = "will install an assistant for each one of those utilities, with a separate icon for each one. APLI Master 6.4.0 is compatible with Office 97, 2000, XP, 2003 and 2007.";
fDesc[13] = "recovered from your PC after they have been deleted. SecureClean is designed to provide every user with the highest level of personal privacy protection by finding and overwriting old data, making it impossible to recover.";
fDesc[14] = "fact thats what Access is about and most small business users need but we all know that some advance tricks requires SQL and Visual Basic knowledge, which obviously isn´t covered on this course, so don´t expect to be the database guru after buying the product.";
fDesc[15] = "that start automatically whenever operating system is loading. Starter 5.6.2.8 enumerates all the hidden registry entries, startup folders' items and some of the initialization files.";
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 = '...';
}
}