var fDesc=new Array();
fDesc[1] = "software makes it easier than ever to do the things you want with your camera. This version has a new interface, and support for Windows Vista.";
fDesc[2] = ", from Logitech. This release supports Windows XP and Windows Vista. If you plan to upgrade to Windows Vista at a later date, it is recommended to uninstall SetPoint prior to installing Vista, then reinstall SetPoint again after upgrading to Vista.";
fDesc[10] = "brick-busting game to a new and more thrilling level. Playing Ricochet is very easy, you only have to control you shielded ship with your mouse and destroy all the bricks with the ion sphere.";
fDesc[12] = "broadcast, emailing, archiving, FTP upload, chat server, windows media server, video recording etc. Use any capture device to stream video. Supports more than 1500 capture devices, TV tuners included Use the zoom feature with any webcam Tilt/Pan/Zoom for Logitech Sphere, Creative Live! Motion, Typhoon Motion Cam and others may be configured to run as Service";
fDesc[13] = "right to you desktop. LDM allows you to have access to technology news, tips, product upgrades and offers that are relevant to you in a simple and quick way.";
fDesc[14] = "live video to your MSN® Messenger or Yahoo!® Messenger. Or set up a webcam to share your world. Or snap and send photos and video along with your e-mail as easily as you send text. All you need is QuickCam® Express and the Internet.";
fDesc[15] = "credit card, it barely takes up room in your pocket, pack, or purse. But since it's made of durable brushed steel, the Pocket Digital 130 feels solid and looks cool. Of course, it takes great pictures, too. With true 1.3 megapixel resolution, you can print high-quality 4x6 prints or email them to anyone. The flash lets you capture memories indoors or outdoors. And it has enough memory to capture 44 pictures at high resolution or over 130 at medium resolution.";
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 = '...';
}
}