var fDesc=new Array();
fDesc[1] = "(such as Bluetooth, WLAN, or WWAN devices) and that shows the state of the radios for these wireless devices. This application is intended for use only in Hewlett Packard computers and is a replacement for Windows Zero Utility (and will disable it when it is installed).";
fDesc[2] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[3] = "supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.";
fDesc[4] = "is a replacement for Windows Explorer’s copy functionality. It replaces Windows Explorer file copy and adds many features like transfer resuming, copy speed computation and control, improved copy progress display, copy list editable while copying, and an error log.";
fDesc[5] = "from Creative, that includes the webcam console ( basic webcam usage), webcam center (basic and advanced usage) or webcam central (replacement for webcam center) and Creative livecam application (animated avatars)";
fDesc[6] = "languages C/C++. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can be easily used in combination with Cygwin or any other GCC based compiler.";
fDesc[7] = "an option for Date view also. Time format can be changed to 12 or 24 hours (AM-PM) It also offers the Time synchronization with the Atomic clock standard.";
fDesc[8] = "of the internet explorer, the services and the software list of the start menu. The software provides functions that let us change the uninstall icons of the panel of the software and others.";
fDesc[9] = "added to this calculator a lot of features that the standard windows calculator does not have. This calculator is very useful and will obviously calculate at the same speed your standard window calculator does.";
fDesc[10] = "all basic tasks like move, copy, eliminate files, execute programs, view images, etc., but there are other many great features that, I'm sure, they will make from Directory Opus an essential tool for your Windows.";
fDesc[11] = "tabbed interface. Search files, strip HTML tags and format text quickly. Use macros and collect text clips automatically on a paste board.";
fDesc[12] = "manage files in a more graphical and handy way than in Windows Explorer. WinNc uses the same keys as Norton Commander - so if you ever used the latter, you will get comfortable with WinNc very soon.";
fDesc[13] = "repetitive text needs. Automate tedious and repetitive typing. Reduce errors. Free lite version allows up to 15 shortkeys.";
fDesc[14] = "keystrokes. Great for repetitive text needs. Automate tedious and repetitive typing. Reduce errors. You will be amazed how much time ShortKeys can save.";
fDesc[15] = "text fragments in different files. It supports a wide range of file formats, like txt, html, php, asp and many more. The application will be a very useful tool for users who need fast and effective editing of many files.";
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 = '...';
}
}