var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = ".mkv file formats. It comes in bundle with DIVX Pro for Windows. It is very easy to use. The pre-set modes allow a user to play videos on various DIVX certified products.";
fDesc[3] = "videos. AviSynth works as a frameserver, providing instant editing without the need for temporary files.AviSynth itself does not provide a graphical user interface (GUI), but instead relies on a script system that allows advanced non-linear editing.";
fDesc[4] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[5] = "download a video; it also comes with a built-in video converter that can convert the downloaded video for your iPod, iPhone, 3GP player, Xbox player, Archos and for many other popular multimedia players.";
fDesc[6] = "are stored in a single text-based ini file. The information is shown in yellow rectangular windows. Once you´ve take som note on them, they will stay on screen (even after reboots) until you take them away, just like a post-it.";
fDesc[7] = "digitalize your paper notes. It also allows to: personalize notes, insert photos and associate images with websites, make lists and reminders, set alarms and add sounds, administrate a virtual memoboard, locate notes by special searches, back up notes and memoboards, use hotkeys and more.";
fDesc[8] = "time between different time zones and locations. The program has a built-in calendar, countdown, and stopwatch.";
fDesc[9] = "you have to manually login & post. To reduce this extra work there is a special plugin that goes by the name of del.icio.us Buttons for Internet Explorer that helps you post your bookmarks directly from the Internet Explorer toolbar with a click of a button.";
fDesc[10] = "the fridge when you want to remind your significant other to get some milk at the supermarket. Well, now, you can have digital notes flying around your system with important reminders. When you download this application, it will download some more content.";
fDesc[11] = "record reminders, allowing for the creation dates and notes with alarm to remind an appointment, meeting or what you need to remember.";
fDesc[12] = "an adventure which has a good gameplay. While most first-person adventures have been a complete failure, there must be exceptions, and this is one of them.";
fDesc[13] = "automatically links to zemanta.com and provides services such as adding images from flickr directly to your post, making your blog post more SEO friendly, automatic tagging.";
fDesc[14] = "icon into the system tray to easily operate by clicking on it. It offers several optional settings, such as note size, back color, password, etc. Users can, anytime, hide or show the 'sticky' notes, so the desktop doesn´t get stuffed and full of icons or images.";
fDesc[15] = "customer when purchasing this product. It has been developed by the 3M Company. There is a demo available from the developer's website.";
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 = '...';
}
}