var fDesc=new Array();
fDesc[1] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[2] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[3] = "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[4] = "and options provided by any HTTP server with great performance and absolute control of it. Its administration is very easy however it doesn’t have any GUI; by using commands and scripts you can set it up quickly in almost any platform.";
fDesc[5] = "enables co-workers, customers and prospects to view any application running on your PC in real time. Plus, All You Can Meet(TM) pricing means you get unlimited online meetings for one flat rate, so you can meet as often and for as long as you want, with no overage charges, ever. Features include: Desktop Sharing, Share Keyboard and Mouse Control, Change Presenters, Chat, Drawing Tools, Meeting Recording and Playback, Multiple Monitor Support, Microsoft(R) Outlook(R) and IBM(R) Lotus Notes(R) Integration, Instant-Messaging Integration and a Free Voice Conferencing Service. Security measures include: industry-standard SSL and government-standard end-to-end 128-bit AES encryption, user authentication using strong passwords, specific application sharing and inactivity time-out.";
fDesc[6] = "the following functions: intelligent coding, debugging stratified interactive, visual design of the distribution of the elements of the user interface.";
fDesc[7] = "anyone who wants to put to rights his/her business. You work with this program like with usual organizer, where you can find calendar, to do list, address book, information about data and anniversaries, annual plan of activity, and notepad.";
fDesc[8] = "information from CompactFlash cards (type I/II), IBM Microdrives, SmartMedia cards, MultiMedia cards (MMCs), Secure Digital (SD) cards, Memory Sticks, and any other storage devices.";
fDesc[9] = "drives and devices, lost due to accidental deletion, system crashes, drive formatting and other reasons. The program features a very simple and intuitive wizard-like user interface, very suitable for beginners.";
fDesc[10] = "programmers can use HexEdit to patch files or fix corrupt files such as documents and databases. Hex Edit is very stable and easy to use software which saves a lot of user’s time and effort by allowing him to track down and fix problems fast.";
fDesc[11] = "terminals shown to the hosts supporting the dial-in modems or telnet protocols, which is basically the action of NetTerm. Its emulation support includes numerous terminals.";
fDesc[12] = "program supports S-ATA (SATA), IDE (E-IDE), SCSI, USB and FIREWIRE interfaces. It fully support LBA-48 drives. Hard Disk Wipe Tool can format Maxtor, Hitachi, Seagate, Samsung, Toshiba, Fujitsu, IBM, Quantum and Western Digital drives.";
fDesc[13] = "terminal. Low cost : Single User license 25 USD or 250 USD for a Company License.";
fDesc[14] = "images via e-mail, or post them on a Web page. Or use the images to create customized Web pages, greeting cards, brochures, posters or calendars. PerfectPhoto lets you create a moving \"Digital Gallery\" and send it in executable files to friends, family and colleagues. They won't need any special programs to view the executable 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 = '...';
}
}