var fDesc=new Array();
fDesc[1] = "active presentations.";
fDesc[2] = "tutorials, presentations and much more. BSR Screen Recorder enables you to record a complete screen, a selected window or a region on your screen. You can record audio along with the video using a mic.";
fDesc[3] = ", in the Video tab, you can choose where to save your video file, which format would you like (AVI, WMV or EXE) and which codec you choose to use, which region of the screen will you capture, and configure the keys that you will use.";
fDesc[4] = "including full screen capture, region capture, window capture, scroll capture, directx capture, video screen capture, sound record and etc.";
fDesc[5] = "sounds to standard AVI video file. It is an ideal tool to make software demonstrations, develop videos for training and tutoring.";
fDesc[6] = ", any window or a selected region of your screen. You can start the screen recording at any time using a hotkey, and stop or pause the recording that way too. Create presentations, video tutorials and demo videos for software products.";
fDesc[7] = "image, you can record the whole screen into video using this little program. The program is very useful to create video tutorials.";
fDesc[8] = "screens, or part of a screen to a video file in AVI or WMV formats. You can also record sound with the video using a microphone or directly from the speakers, so now you can record your conversations with friends and save those memories forever.";
fDesc[9] = "compression choices. If You Can See It ... You Can Record It! Create videos from your computer screen without spending hundreds of dollars on screen capture software!";
fDesc[10] = "viewing. This tool comes in handy when one has to repeat a set of activities. The recording feature of the tool captures both audio and video. Recordings can be made in WMV & AVI format, which are supported on all media players.";
fDesc[11] = "detail that you see on your screen. It also records sounds from a connected microphone, which can be very useful while making presentations. Even the sound played through the speaker also gets recorded.";
fDesc[12] = "mouse cursor. This application is very easy to use. Just select an area of the screen or a window you want to record and click on the start recording button. You can stop the recording at any time using Ctrl+Del buttons.";
fDesc[13] = "with your own voice making this software a great utility for making your Video Tutorials, Demos or Product presentations.";
fDesc[14] = "Screen to AVI video Files you can later use as tutorials or demonstrations of different activities on your computer. You can record the whole screen, a selected area, window, and include audio from your microphone.";
fDesc[15] = "to many different video formats such as AVI, DivX, XviD, and WMV, it captures whole screen, a window, or a region. With booster packs it supports additional video outputs.";
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 = '...';
}
}