var fDesc=new Array();
fDesc[1] = "WSE is a feature set, which developers can use for secured interaction between Web services based on different WS- specifications, such as WS-Security, WS-Addressing and WS-Policy.";
fDesc[2] = "applications and for many targets. From console applications to dynamic web pages, Visual Studio has all the tools a developer needs.";
fDesc[3] = "through a plug-in. This program enables corporations to easily visualize, analyze and manipulate data for efficient enterprise information structural design.";
fDesc[4] = "and services. It includes how-to and reference documentation, sample code, technical articles and more. To find the content you need, browse the table of contents or use search. To get the latest MSDN headlines sent to you via e-mail, you can sign up for the MSDN Flash Newsletter.";
fDesc[5] = "complete website, thumbnail cover preview, a loan tracker, search function and multi-language user interface. EMDB is written in C++ using Microsoft Visual Studio 2005 and doesn't need a .NET framework or any other external libraries.EMDB is available in several languages: English, Dutch, Danish, German, Italian, Portugese, Slovak, Spanish, Hungarian Croatian, Swedish, Greek, Catalan, Czech, Norwegian, Japanese, French and Finnish translations are included in the setup.";
fDesc[6] = "provides a high detection rate for viruses and spyware also; you can schedule your scans in the Scanning Scheduler; it provides e-mail alerts notification using SMTP; it offers e-mail scanning for Microsoft Outlook. ClamWin runs on Microsoft Windows 98/Me/2000/XP/2003/Vis ta platforms.";
fDesc[7] = "leverage all the features Visual Studio 2005 provides.";
fDesc[8] = "provides.";
fDesc[9] = "pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
fDesc[10] = "analysis toolproduced by Gimpel software within the integrated development environment, providing advanced static analysis capabilities and detailed HTML reporting. Standard, Professional and Enterprise Edition licences are available. Visual Lint is an add-in for Microsoft Visual Studio which closely integrates the PC-Lint code analysis tool produced by Gimpel software within the Visual Studio integrated development environment.Visual Lint is compatible with development environments including Microsoft eMbedded Visual C++ 4.0, Visual C++ 6.0, Visual Studio .NET 2002, Visual Studio .NET 2003 and Visual Studio 2005. PC-Lint 7.50, 8.00 and 9.00 are supported.Please note that a valid PC-Lint licence is also required to use this product. If you need to purchase a copy of PC-Lint you can purchase one from us or via PhaedruS SystemS - the only European distributor able to supply PC-Lint and...";
fDesc[11] = "Content Viewer, Powerful databinding feature and customizable toolbar makes this product very useful for a developer.";
fDesc[12] = "uses Perl regular expressions and scripting, Eluent Find, a file contents searcher and viewer, and much more.";
fDesc[13] = ", including all tables, views, stored procedures, webservices and integrates with any existing pages.";
fDesc[15] = "rules, automatic code generation and seamless integration with Microsoft Visual Studio.";
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 = '...';
}
}