var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[4] = "colleagues. It provides instant messaging, PC-to-PC voice and video chat, files transfers and email notifications. There is also ICQ client integrated in this version (5.3) of the program.";
fDesc[5] = "import your photos and videos from digital cameras, camcorders, CDs, DVDs, and Windows Live Spaces. Moreover, with this incredible program you can enhance your photos with easy-to-use tools for adjusting exposure, color, and for removing red eyes.";
fDesc[6] = "photographers. You can view, organize, edit and convert all your images the easiest way ever. Ashampoo Photo Commander has everything that you may need to manage your photos.";
fDesc[7] = "(e.g. red eye) or get creative. Use for web, email, or print. Photoshop plugins, animation, and much more. FREE. Registration required.";
fDesc[8] = "one process, use image watermarking options, rotate and auto rotate images without compromising in quality, use canvas resize feature, rename image files in batch mode so on.";
fDesc[9] = "beginner. Following a three-step process, digital camera users can process a typical set of 24 photos in five minutes or less.";
fDesc[10] = "size of a photo and make is easy to share over internet. User can see preview of modified photo at rum time so he can decide the best adjustment. It also provides good quality and optimizes the photo.";
fDesc[11] = "digital camera. Ideal for birthdays, wedding invitations, baby showers, or keeping in touch with loved ones.";
fDesc[12] = "contrast, color, sharpness, and white balance. It also lets you preview the original photo and the results of the conversion, convert images to JPEG, and send them to a list of recipients through your default email client.";
fDesc[13] = ", personalized web albums or prints. Send & receive your photos 25x faster. No more struggling with attachments!";
fDesc[14] = "head through a hole in a carton board, painted with a funny scene. With this program, you can cut a face in a photo and paste it onto one of the templates.";
fDesc[15] = "send emails to family and friends without all the fuss. No training needed. We guarantee it!";
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 = '...';
}
}