var fDesc=new Array();
fDesc[1] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[2] = "chatting, watching trailers, etc. Java Runtime Environment has a Java virtual machine and all the necessary stuff to run these applications.";
fDesc[3] = "does without its not-so-needed components. The install file is considerably smaller and the program starts faster and runs smoother.";
fDesc[4] = "and video libraries and download online information about the artists. Besides, you can create photo slide-shows and edit your videos with special effects.";
fDesc[5] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[6] = "PC. The data appears classified in three big groups, Software, Hardware and Network. Within each of them there are several sections that specify details about the processor, motherboard, printer, operating system, video drivers, libraries, etc.";
fDesc[7] = "applications. It also contains all the elements that the end user requires to execute those .Net applications. Mostly those elements are libraries that this framework uses to present any .Net application.";
fDesc[8] = "complete tool that will serve you as a reference library and a book collection, wherewith you will be able to read, search, investigate and learn more about the Holy Word of God.";
fDesc[9] = "servers and libraries on Internet, to obtain unlimited number of songs, mp3 tracks, etc. The application is launched and the user gets in the desired social music web page. The application downloads the music the user selects, at the same time (s)he is listening to it.";
fDesc[10] = "drawings such as flowcharts, network diagrams, presentations, building plans, fashion designs, workflows, program structures, UML, web design, electrical engineering, database diagrams, and more.";
fDesc[11] = "application is to combine the spontaneity of sketching by the hand with the power of digital tools, and achieve it with awesome and powerful tools and an intelligent guided process that makes everything really easy.";
fDesc[12] = "manufacturing—purpos e-builtAutoCAD® Mechanical software is AutoCAD® for manufacturing—purpos e-built to accelerate the mechanical design process while preserving the AutoCAD user experience. With comprehensive libraries of standards-based parts and tools for automating common design tasks, it offers significant productivity gains over basic AutoCAD software and saves countless hours of design time. Features Standards-Based Drafting & Part Libraries Produce accurate designs with a comprehensive set of standards-based components. AutoCAD Mechanical supports libraries of more than 700,000 standard parts. Machinery Generators & Calculators AutoCAD Mechanical software accelerates the design process and improves accuracy with a comprehensive collection of automated machinery generators and calculators that enable users to instantly create and analyze a wide variety of common components. Data Management & Reporting...";
fDesc[13] = "good for libraries where a record has to be maintained for books borrowed. In this system, all the books along with their details can be entered in many formats. The print mode is super condensed; for that reason a magnifying glass is required.";
fDesc[14] = "the crucial task of managing the build process, in a compiler independent fashion in an operating system. It comprises of many simple configuration files, which collectively form the standard build files for normal working.";
fDesc[15] = "all your audio, video and photo libraries with an intuitive and easy-to-use interface. Not only can you play most of your media files, but it will also let you watch your favourite TV channels and listen to your preferred radio stations. It will also burn your media files in both DVD and CD.";
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 = '...';
}
}