var fDesc=new Array();
fDesc[1] = "few users try to learn these important topics. But nowadays, it’s easier to get that information thanks to Berlac Advisor. This small utility will make a deep analysis of your PC, detecting all your hardware elements connected and all your installed applications.";
fDesc[2] = "e-mail, calendaring, group scheduling, to do list and more. Notes users can exchange messages via the Internet, work with any Web application, read and post topics to Internet newsgroups, search Web directories, and use X.509 certificates for security. Notes even lets you access your e-mail and other applications while you're off-line -- with full fidelity -- and gives you the option to synchronize your work later.";
fDesc[3] = "Windows applications and web pages. It includes advanced text search capabilities and a 'favorites' tab to save the more often searched topics, themes and/or terms. The application itself includes an image editor to help user on including the help file to the developed and compiled program.";
fDesc[4] = "are working on something that needs creative thinking and we need more memory, we can use this program! It is filled with a lot of tools or features.";
fDesc[5] = "really amazing in You will find all the information that you need, there are different topics such as people, environment, politics, that will let you have a full picture of the place you are looking up.";
fDesc[6] = "viewer software but it is also an e-books organizer or manager. By using this advanced software you can easily read your books and you can also highlights the topics in the books which VitalSource bookshelf will remember for you.";
fDesc[7] = "this version of Visual Basic. Basically, this introduction is a lesson on video format, that covers the most important topics about developing applications on Visual Basic 2008 Express Edition. It's available for free and doesn’t require any prerequisites.";
fDesc[8] = "It lets you to organize ideas, projects, contacts, files, and Web pages associatively to capture your thinking and perspective. You can use PersonalBrain for business projects or for your own use at home.";
fDesc[9] = "of C++. It's a lesson on video format, which covers the most important topics about developing applications on C++ 2008 Express Edition. This lesson is not oriented to experienced Visual Studio users,it's available for free and doesn’t require any prerequisites.";
fDesc[10] = "version of C# programming language. It covers the most important topics about developing applications on this language. This lesson is not oriented to experienced Visual Studio users. It's available for free and doesn’t require any prerequisites.";
fDesc[11] = "conversion consists of three steps, Opening a CHM file, Selecting the topics and Start converting. The File menu, View menu, Tools menu and Help menu contain all the commands for executing the conversion to Word documents. The Help Menu contains a detailed manual for CHM2Word.";
fDesc[12] = "is an all-new variation of the popular and classic hangman game. It has been completely retouched till its details to make it even more irresistible!";
fDesc[13] = "newsgroups. Uses various filters to check only topics you're interested in.";
fDesc[14] = "users are able to create picture slides. You can improve pictures automatically or manually, remove red-eye effects, apply distinct effects, add frames and borders, fix colors, crop, add text captions, etc.";
fDesc[15] = "Scroll, Multimedia Study Bible! That's about 1000 pages of original contemporary material written for the scroll. Topics cover History of the Bible, Books of the Bible, Bible Themes, Life of Christ, People, Customs and Practices, Major Events, Objects, Archaeology, and Languages. Hear the proper pronunciation of Hebrew and Greek numerous works and alphabets. What an asset to any study of God's Word!";
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 = '...';
}
}