var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "spell checks on items such as form fields and comments and to add and edit custom words in their user dictionaries for future reference. A selection of spelling dictionaries used can be customized as per the order in which these are needed.";
fDesc[3] = "Tasks are reduced from multiple steps with the new task pane. The new version of Outlook condenses all your personal and professional e-mail into one central location, even your Web-based e-mail accounts like Hotmail.";
fDesc[4] = "from Creative, that includes the webcam console ( basic webcam usage), webcam center (basic and advanced usage) or webcam central (replacement for webcam center) and Creative livecam application (animated avatars)";
fDesc[5] = "resolution and picture adjustments. Tray Icon enables user to launch the application and set it to mini-mode. Picture Slideshows can be created using the Stitch-Video feature.";
fDesc[6] = "mirrors, BitTorrent files, file preview, scheduling + much more.";
fDesc[7] = "animals hilarious in nature, which include a personality-packed crew made up of a lion, zebra, giraffe and hippo along with cute penguins. The game enables the user to assume the role of the main characters from the movie.";
fDesc[8] = "private detective. The story tells an adventure of Edward Carnby in Central Park . When you start the game, Carnby can not remember anything , and will have to go collect data from his memory in an apocalyptic night, starting in a hotel and finishing in the center of Central Park.";
fDesc[9] = "organize your monitor´s space in the way you want. The program puts on your screen a tiny, semitransparent, always on top windows that has nine buttons.";
fDesc[10] = "control a central character (a Chameleon, this time) that has a gem in its mouth, and a long line of gems going around it.";
fDesc[11] = "collaborating projects. It works on Microsoft Project ® files (MPP files), and is designed with impeccable capabilities, such as instant sharing of documents, project plans and information in a group.";
fDesc[12] = "download movies, tv shows and music through the Internet from the Media Locker to your computer. Disney Mix Central will allow you to download a queue of files. The program will resume the download if the connection gets interrupted. This way you won´t lose the media you´ve paid for.";
fDesc[13] = "do.";
fDesc[14] = "client is redirected to the preset secondary server connection, and telnet communications may then take place for means of remote control or communications with the remote server. All communications from the client will appear as though they are coming from the central computer. The admin of the central computer may also watch the activity in a status window.";
fDesc[15] = "and productivity of creative professionals and mobile developers who want to produce innovative and compelling content for a broad range of mobile phones and consumer electronics devices.";
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 = '...';
}
}