var fDesc=new Array();
fDesc[1] = "Relay Chat) abounds with information and resources, and mIRC is the best way to get what you want. This IRC client is simple yet powerful and can be ready to go in a snap.";
fDesc[2] = "Products. Adobe ExtendScript Toolkit 2.0 comes with CS3 Suites or with separate applications like Adobe Bridge CS3, Photoshop CS3, Illustrator CS3, InDesign CS3, and After Effects CS3. It is not included with Adobe Premiere CS3. This program is quite nice and has limited tools.";
fDesc[3] = ", easy, and high-quality backups. Auto Gordian Knot is a great tool designed for people who know very little (or nothing) about video conversion and want to create videos for their standalone or PC in a few clicks of a mouse.";
fDesc[4] = "manufacturing—purpos e-builtAutoCAD® Mechanical software is AutoCAD® for manufacturing—purpos e-built to accelerate the mechanical design process while preserving the AutoCAD user experience. With comprehensive libraries of standards-based parts and tools for automating common design tasks, it offers significant productivity gains over basic AutoCAD software and saves countless hours of design time. Features Standards-Based Drafting & Part Libraries Produce accurate designs with a comprehensive set of standards-based components. AutoCAD Mechanical supports libraries of more than 700,000 standard parts. Machinery Generators & Calculators AutoCAD Mechanical software accelerates the design process and improves accuracy with a comprehensive collection of automated machinery generators and calculators that enable users to instantly create and analyze a wide variety of common components. Data Management & Reporting...";
fDesc[5] = "space or to hide your sensitive information from prying eyes, protecting it with a password. Other things you can do with this powerful program are automating the process of backing up your important data and creating self extracting files.";
fDesc[6] = "without the usual WinZip graphical user interface. It allows you to use WinZip directly from the command prompt and from batch (.BAT) files and script languages, making it ideal for automating repetitive tasks.";
fDesc[7] = "program will search for phrases or names in different search engines, such as Google, Altavista, Picsearch, Ask Jeeves and more.";
fDesc[8] = "place where users have to play a list of songs, such as a shop, a private party or a club. Through the Raduga's simple interface, you can build a list of themes to play just by dragging any kind of audio file from any drive and folder and dropping it into the list.";
fDesc[9] = "to save disk space or to hide your sensitive information from prying eyes, protecting it with a password. Other things you can do with this powerful program are automating the process of backing up your important data and creating self extracting files.";
fDesc[10] = "storing of text pieces and pasting them into any document by a simple hotkey press. This program locates itself in the system tray and runs on system startup and takes very little space on your hard disk.";
fDesc[11] = "called background image, automatically at intervals of your choice, with your beautiful digital images.You can specify the wallpaper change interval in seconds, minutes, hours, days, weekly, monthly or when you log on - just to name a few. You can define complicated schedules as well.Try using the photographs made by your digital camera as your desktop wallpaper. It wouldn't fit, would it? Windows does not scale down your image size for you. DeskSlide does not only scale-up or scale-down for you, it gives you different options.You can rearrange the order of the slides, specifying the style or layout, or let DeskSlide automatically select this for you, depending on the image. Supported file types are BMP, GIF, JPEG, DIB, and PNG.";
fDesc[12] = "friends by creating and sending customized e-mails. The latest version of our bulk mailer has added a FREE html email editor and 10+ templates.";
fDesc[13] = "Windows 2003. It will make your favorite applications more comfortable to use. And you can \"teach\" different applications to work with each other.";
fDesc[14] = "files, running programs, etc.";
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 = '...';
}
}