var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = "more features like effects and custom filters that give website developers more functionality in showing better graphics. It is a must on every PC, as many sites rely on this plug-in for showing videos";
fDesc[3] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[4] = "photos with friends and family is as easy as pressing a button!";
fDesc[5] = "and watch the latest movies on Blu-ray Discs and HD DVDs, or are you simply looking for the best home-theater playback quality available for DVDs? DVD Suite 6 Ultra for creating discs of your high-definition video content, editing videos automatically, and watching Blu-ray Discs and HD DVDs.";
fDesc[6] = "user interface is built around a simple 4-step workflow comprising: Capture mode (to capture feed from different sources); Edit mode (Import Media, Trim, Fix/Enhance with Magic Tools, Add Effects) etc.";
fDesc[7] = "user-contributed bandwidth to traditional content publishers while leaving publishers in full control of their files.";
fDesc[8] = "video recorded with a camcorder, upload a video to a portable device, or edit a project, MyDVD will allow you to do it, providing you with professional tools to create the perfect DVD for each ocassion.";
fDesc[9] = "the drive, allowing you then to backup the movie using a DVD backup tool such as CloneDVD.";
fDesc[10] = "photo slide shows in a few simple steps. This incredible software enables you to combine still images, video clips, audio tracks, text, and special effects into you very own movie.";
fDesc[11] = "started quickly with easy moviemaking options; show your style with amazing audio and video effects; and share your movies virtually anywhere. You can create, customize and share movies.";
fDesc[12] = "countries and can classify it according to various criteria such as gender, country or station's / broadcaster's name. It classifies the stations according their type and programming: TV, radio, movies on demand and TV on demand.";
fDesc[13] = "watch TV on your computer. You will be able to watch new movies, old movies, comedy movies, anime, TV series, TV shows and many more online programs.";
fDesc[14] = "share your home movies on your computer. With this tool it is easier; to make changes in your movie by editing some shots, drag and drop certain clips in your movie.";
fDesc[15] = "located in the hard disk of your computer or directly from the Internet. Using this program, you will be able to play any of the video files you download directly from the most popular video-sharing websites, such as YouTube, iFilm.com DailyMotion, etc.";
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 = '...';
}
}