var fDesc=new Array();
fDesc[1] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[2] = "the way you need it easily. The user interface is very simple and straightforward. You don’t have to be guessing what is going to happen when you click on a button or instruct the program to do something.";
fDesc[3] = "backup application on the market. Not that I use a lot of them, but I have used quite a few, and this is the best so far. Drive Backup 9 allows you to backup your computer drives and create image files that you can later on recover your system from.";
fDesc[4] = ", complete and expandable. The concept behind the interface and work methods in Maya are extremely smart, and the program offers extreme control over every aspect of your work. The learning curve is steep though, so you will need to invest time in order to master this 3d beast.";
fDesc[5] = "actual computer.";
fDesc[6] = "ensure protection of the computer system, all its components and peripherals, and the data. If there is a power loss, the software automatically saves all the user files and safely turns off the computer in an orderly manner.";
fDesc[7] = "you can easily create, grow and deepen your relationships with customers, market your products and services globally, expand your online presence and web site effectiveness with newsletters, permission marketing and much much more.";
fDesc[8] = ", communicates and executes information. MindMapper 2008 6.0 Standard Edition helps to order the ideas not only of business projects even personal projects.";
fDesc[9] = "storage media. It comes in two different versions: Personal and Professional editions. The Personal edition is free, but only recovers certain type of files.";
fDesc[10] = "parts. Download a FREE version and see how liberating an explicit, geometry-based 3D CAD system can be.";
fDesc[11] = "want. Of course, the design process is 100% visual with excellent drag&drop features. If you are an Eclipse user, you can get the corresponding plugin to get the most powerful combination of IDEs.";
fDesc[12] = "launches an easy to navigate Windows style interface which presents you with tabs for more specific information about pinout, substitute, ratings, short data and the Links tab that includes URL links to data sheets for more than 9,500 vacuum tubes on the Internet.";
fDesc[13] = "feeds with both RSS and Atom feeds. The program allows you to create custom channels for your RSS feeds. You can search your news archive using the powerful built-in search engine.";
fDesc[14] = "expressions to include in digital documents and texts. It’s pretty similar to the equations editor included in Microsoft Word, only a little more sophisticated and complete.";
fDesc[15] = "allows you to apply mechanisms to efficiently manage DRM, copy protection, and distribution of your most sensitive files. You can make use of different parameters to define your preferred levels of security.";
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 = '...';
}
}