var fDesc=new Array();
fDesc[1] = "ever known in a browser. The only disadvantage I found is that Safari lacks any advanced security settings. You can block third-party cookies and some Web scripts, but you can't enter specific Web sites from which to accept or reject cookies.";
fDesc[2] = "with Spybot - Search & Destroy. This tool specializes in the removal of these kinds of threats while the Antivirus companies are barely just offering this.";
fDesc[3] = ", and much more - to ensure that you have the power to protect yourself online.";
fDesc[4] = "Relay Chat) abounds with information and resources, and mIRC is the best way to get what you want. This IRC client is simple yet powerful and can be ready to go in a snap.";
fDesc[5] = "videos. AviSynth works as a frameserver, providing instant editing without the need for temporary files.AviSynth itself does not provide a graphical user interface (GUI), but instead relies on a script system that allows advanced non-linear editing.";
fDesc[6] = "Products. Adobe ExtendScript Toolkit 2.0 comes with CS3 Suites or with separate applications like Adobe Bridge CS3, Photoshop CS3, Illustrator CS3, InDesign CS3, and After Effects CS3. It is not included with Adobe Premiere CS3. This program is quite nice and has limited tools.";
fDesc[7] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[8] = "While installing, we can choose to install any or all of the following components: script interpreter, standard scripts, example scripts, user's manual, and screensaver. We can also set this program to perform daily automatic optimizations.";
fDesc[9] = "dimensions. Celestia runs on Windows, Linux, and Mac OS X.";
fDesc[10] = "easy to learn and use. It it not much complicated. This is a mid-range to high-end video editing tool. A PC configured with 1GB RAM is sufficient for running one tool at a time but if you plan to run multiple tools concurrently then I suggest you upgrade your setup to 2GB.";
fDesc[11] = "definitely one of the best database managers for MySQL I ever seen. Manage multiple servers, databases, tables, indexes, stored procedures... Perform complex SQL queries, execute scripts, and more.";
fDesc[12] = "variety of different tasks. So JavaScript FH plus can also be thought of as an ultimate source for Java Scripts. The program contains 170 finished Java Scripts, with every java effects you can think of.";
fDesc[13] = "any web page code. It doesnt depend on Internet pages, since it is an offline application with all the data included. The application installation comes with over 200 JavaScripts, ready to use and insert into a web page. Also HTML tested scripts for including into web page code.";
fDesc[14] = "account. UTF-8 support is the most valuable feature, which will encourage programmers to write strict html code; perhaps in other versions ISO-8859 support may be added, which will be a great advancement.";
fDesc[15] = "features a very simple and intuitive user Tabbed multi-document interface which is comfortable both for beginners and experienced programmers, making PHP development easy and productive.";
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 = '...';
}
}