var fDesc=new Array();
fDesc[2] = "visual basic appliaction. It includes excel spreadsheet, chartspace, pivot table and data source connection.";
fDesc[4] = "you can use to keep statistics, Microsoft Office add-ons and games. These new versions enable cool fun features that build on the latest technologies including WPF, WCF and LINQ.";
fDesc[5] = "other Express Edition products focus on programming and application development, Visual Web Developer provides a set of tools; its versatile HTML and CSS editing tools are paired with the power of ASP.NET to allow users to quickly build web applications";
fDesc[9] = "the highest quality rich user experiences.This new version includes an easy installation of the Windows Platform SDK. It has tools for developing and debugging C++ code, especially code written for the Microsoft Windows API, the DirectX API and the Microsoft .NET Framework.";
fDesc[11] = "6.0. The book is showing the reader how to create their first simple Visual Basic program. This will help you to become familiar with the Visual Basic environment.";
fDesc[12] = "Hindsight is the ideal remote network camera surveillance and recording tool for private or commercial use.";
fDesc[13] = "filtered and verified results. And narrow your search by with thumbnail images of your search results.";
fDesc[14] = "the ideal remote network camera surveillance tool for private or commercial use.";
fDesc[15] = "application development. All major protocols are supported, and the controls can be used in a wide variety of development environments.";
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 = '...';
}
}