var fDesc=new Array();
fDesc[1] = "With Dell Webcam Center, you can perform photo and video captures or perform advanced tasks such as remote monitoring, motion detection, and time-lapse video capturing.";
fDesc[2] = "through frames, effects, and themes. This incredible program launches automatically when you start a video chat with any of your favorite chat clients, so you can apply fun effects simply and easily.";
fDesc[3] = "your web camera output. The program can replace the video output from your webcam with any other video clip or even with images from your computer.";
fDesc[4] = "Microsoft Office installed on the user PC and accessed through internet. As expected, service is adquired through licensing Microsoft software and web servers or included on Office Communication Server";
fDesc[5] = "as ducks, flags, clouds, and many more. Also, you can reverse the colors, solarize the image, apply effects and so on. The options are endless and if you find that the preloaded choices are not enough, you can always download more.";
fDesc[6] = "yahoo. When we open the program we find a clean and simple interface, in it we can open files for show them the video and this give the illusion that we are on live but really we are passing a video or image.";
fDesc[7] = "feature-rich effect templates. This incredible program makes your video chatting experience more fun and entertaining than ever before.";
fDesc[8] = "of software. Thanks to its intuitive and perfectly designed interface users can take full advantage of all its features.";
fDesc[9] = "webcam chat. You can add a large list of effects to your online webcam video on the run. Stunning video effects, graphics and animation can be added.";
fDesc[11] = "in real time using an interactive video that hides your real identity. The program includes a great variety of built-in video and audio effects and ready-to-use nickfaces/voices that allow you to express your emotions in real time.";
fDesc[12] = "Webcam Video Capture to make people witness what you want to convey through an audio-visual medium.";
fDesc[13] = "broadcasting or create converted copies of existing video files. Send Video Email. View broadcasts of others online.";
fDesc[14] = "person, or giggle in new voice with online friends. It is a powerful tool for doing video chat online and sharing video clips";
fDesc[15] = "TV tuner card or webcam. Capture streaming video and save it to your hard drive as an AVI file.";
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 = '...';
}
}