var fDesc=new Array();
fDesc[1] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[2] = "the application, you will see a small screen asking you how much memory you want to test. The ideal value here is the total of your memory. If you are troubleshooting your computer for RAM problems; that is.";
fDesc[3] = "for many games. The cheat codes for any game is available in the internet now, just by a Google search. Cheatbook database is for offline use, when you need a cheat code! The program database contains tens of thousans of cheat codes.";
fDesc[4] = ", hex, decimal, float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
fDesc[5] = "functionality for your code. This incredible program allows you to enumerate all installed serial devices, including, but not limited to serial ports and modems.";
fDesc[6] = "developers and testers to utilize. Virtual GPS can output 10 various NMEA sentences to a serial port or UDP port of the computer with variable baud rates. Simulation of GPS receiver can be achieved through setting of numerous parameters and you can also simulate constellation ...";
fDesc[7] = "activity on the target PC, making it into a movie that's easy to view and distribute. Improve communications and catch elusive problems.";
fDesc[8] = "designed to view, verify and print electronics design data and can be used by PCB Designers, PCB suppliers, Assemblers, Designers and Testers. The program contains viewing, editing and converting capabilities.";
fDesc[9] = "(HTML, CHM, MS Word Document), wizard and command line interfaces, complete database schema documenting.";
fDesc[11] = "debugging time by capturing a video of each test and attaching it to the bug reports. Testuff drastically reduce the time testers spend explaining the bugs to developers and helps developers quickly reproduce and eradicate elusive bugs. Doesn't require an IT department to install and maintain. Testuff is an on-demand service with a desktop client application and a secure web-based backend. It saves you both time and money which can be spent on improving your software. Integrates with your bug tracker and automatically generates bug reports in it (see list of supported bug trackers). All bug reports include a link to the video recording of the test and a lot of additional useful information for reproducing and correcting bugs. Gives you peace of mind by storing your test data on secure and routinely backed up servers that are monitored around the clock.";
fDesc[12] = "Beta-testers, comments, suggestions welcome.";
fDesc[13] = "flash-based quizzes, online surveys and web assessments.";
fDesc[14] = "electronic working papers program designed for financial auditors, systems auditors, penetration testers, attorneys, investigators, compliance managers, and others. Most recently, WorkPapers has aided in numerous Sarbanes-Oxley internal control testing projects. If you are a Sarbanes-Oxley project manager or an internal audit manager, and you are still fumbling with Microsoft Word and Microsoft Excel in managing projects, tracking status, and reporting results, then this tool is definitely for you!";
fDesc[15] = "that resembles a typical scope matrix. Each of your requirements is mapped to one or more test cases that can be used to validate that your functionality works as expected. For the tester, SpiraTest provides the ability to execute groups of your test cases - along with their test steps – so that the testers can follow the instructions and determine if the system being tested behaves as expected. Any deviations from expected behavior can then be recorded as defects and managed in the defect tracking module. In addition, SpiraTest has personalized dashboards of key project information. All of the information you need to see the health of the project - requirements coverage, test case execution, issue summaries, bug counts – on one page.";
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 = '...';
}
}