var fDesc=new Array();
fDesc[1] = "files to disc, or create your own music and songs.. The main menu of the program offers you six different utilities, each one aimed at a specific task.";
fDesc[2] = ", Divx, XviD, WMV, MPEG, MPG, DAT, RM, RMVB, MOV, ASF and FLV.";
fDesc[6] = ", ASF, DAT, MOV and FLV, etc. to Pocket PC WMV, AVI and rip video audio to Pocket PC MP3, WMA fast and easily";
fDesc[7] = "interface and batch converting technology, you can easily and instantly get videos on your Pocket devices.";
fDesc[12] = "convert DVD, vob, DivX, XviD, MOV, rm, rmvb, MPEG, WMV, AVI to WMV,WMA,Mp3 and enjoy yourself to the fullest with your mobile devices.";
fDesc[15] = "converter. You can convert DVD, vob, DivX, XviD, MOV, rm, rmvb, MPEG, WMV, AVI to WMV,WMA,Mp3 and enjoy yourself to the fullest with your mobile 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 = '...';
}
}