var fDesc=new Array();
fDesc[1] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
fDesc[2] = "the movement of files considerably and it also adds several functions that are not present by default on Windows. When you are copying files with TeraCopy you will notice that you are given more information than before.";
fDesc[3] = "videos and photos; enabling the user to add titles, transitions, music, and special effects. The work done can be saved on DVD or be uploaded to the web.";
fDesc[4] = "creation process. Real-time playback of your edits, nondestructive editing, and unlimited undo/redo make tweaking your videos a snap, while dockable windows and customizable keyboard commands let you personalize the interface for your work style.";
fDesc[5] = ", stop, rewind and forward any audio file using the play control. You can cut, copy or paste any part of the audio file or use the recording tool to record your own voice and mix it with music tracks.";
fDesc[6] = "pencil or whatever may the talent be. The application has been designed to suit all categories of users, right from the amateurs who wish to play around with the paint brushes down to the advanced users who appreciate layer blend modes, tracing and referencing images";
fDesc[7] = "user can also choose between five levels of complexity - from Easy to Extreme. Each puzzle is generated randomly so there is an almost limitless selection.";
fDesc[8] = "capture technology to create a near perfect reproduction of what you see on screen, playable as a Windows Media Video file. WM Capture records video from ANY Web site, regardless of format. It even records DVD's playing on your PC. If you can watch it you can save it. WM Capture does not circumvent DRM (Digital Rights Management) or any copy protection technology so it's 100% legal world-wide.In addition to WM Capture's high speed capture technology, the program also includes a proprietary MPEG-2 codec for even more outstanding picture quality. Other screen capture programs cannot process video data fast enough to make acceptable videos. WM Capture's special design uses the most advanced high-speed video processing technology, and the results are amazing. Even the toughest video types like full motion sports play back perfectly.To make it easy to capture a portion of your screen, WM...";
fDesc[9] = "your own creative visual effects instead! Use SoftCam with your favorite video conferencing applications - Microsoft's NetMeeting, Cornell's CU-SeeMe 1.0, iXL's iVisit, Cybration's ICUII,and many others. Already have a camera? SoftCam is the perfect enhancement, allowing you to switch dynamically between multiple live and stored sources. Get SoftCam Pro with the WaveMux Enhancement to add fun sound effects or to blend your voice with an AVI's audio. Use the screen capture tool to stream your desktop in realtime. Use FloatIt to plant your favorite bitmaps around your desktop as information markers.";
fDesc[10] = "audio data such as displaying a waveform image of an audio file, applying more than 20 sound effects and 6 filters.";
fDesc[11] = "bit different to other artistic programs but it is really simple and easy to use. Although it includes basic artistic options (like pens, pencils, pens, markers, brushes, smear tools and erasers), it doesn't include filters or effects.";
fDesc[12] = "desired parts in minutes. It is very easy to use application that doesn’t require any prior knowledge. Just import any audio or video file, play it using the built-in player then define the cutting points to cut the file into pieces.";
fDesc[13] = "hotspot near your current location. The cool thing about this is that you can scan for hotspots from within Skype and save time while doing so.";
fDesc[14] = "and diagrams using your mouse. You can use the eraser to erase a desired portion of the drawing or choose the clean option to clear the Whiteboard completely. Whiteboard can be used to create wonderful drawings and presentation for your office use.";
fDesc[15] = "comments made by other people as you browse the net. The application allows you to add your critiques in the form of electronic notes that will be shown to other visitors when mousing over the marker.";
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 = '...';
}
}