var fDesc=new Array();
fDesc[1] = "in a linear way (cutting and pasting fragments freely and works both as standalone application and as plug-in for the most common video edition software, such as Sony Vegas, Pure Motion EditStudio and Adobe Premiere.";
fDesc[2] = "create professional morphing sequences with little effort. The program warps individual images and creates digital movies (in AVI format) or saved image sequences by morphing between frames. You can also rotate, resize, and twist images for custom effects. You can also combine several separate morphs into a single movie, with motion and transparency effects. It comes with a built-in AVI viewer. WinMorph supports BMP, JPG, MPEG, AVI and MRF file formats.";
fDesc[6] = "user-friendly features make studying for the examination both stimulating and fun. Must for GRE takers!";
fDesc[7] = ", SaveAs, RecentFiles and Exit menu items. Default functionality can be disabled, extra functionality can be added.See http://www.makelogic.c om";
fDesc[9] = "Completely free (this version).";
fDesc[10] = "this strange character become the hero of the movie. Singh is Kinng - Movie Screensaver will give you a little taste of what you will be able to see in the actual movie.";
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 = '...';
}
}