var fDesc=new Array();
fDesc[1] = "integrated shell, Camera Plus brings video mail, video surveillance, web casting, the ability to record video and photo, video editing, etc..";
fDesc[2] = "converts the most known video and audio codecs to both FLV files, for web streaming, and SWF, for HTTP download. Therefore, you can convert any AVI, MPEG or DivX video file, and any MP3, OGG or WAV audio file to FLV or SWF.";
fDesc[3] = ", record voice commentary with the created presentation or demo, and even shows a “picture in picture” video via webcam. With the help of this cool application, the user can even share sales presentations and training demos anywhere anytime.";
fDesc[4] = "allows the user to record video footage from a camera and also to create slide shows from photos. It also helps the user to convert video and audio files to a streaming media format.";
fDesc[5] = "sound quality, it's perfect for face-to-face video conferencing, web-casting and remote home monitoring.";
fDesc[7] = "site's traffic to life, casting your visitors as animated characters in a virtual city. Dozens of reports. Integrated Live Help. Click analysis + more.";
fDesc[8] = "from almost any format (DivX, XviD, AVI, WMV, MPG, MPEG, MP4, M4V, FLV, 3GP, ASF, RM, RMVB, MOV, MOD, ASX, MKV, OGM, SVCD, VCD or VOB) to FLASH Video (SWF, FLV) formats.";
fDesc[9] = "(including AVI, MP4, MOV, MPEG, WMV, ASF) to SWF or FLV format flash file in few mouse clicks.";
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 = '...';
}
}