var fDesc=new Array();
fDesc[1] = "of quality ringtones is touching sky limits. But user has been burning their pockets for such ringtones. Ringtone Converter / Ringtone Composer come as a savior to the pockets of such enthusiasts’ users.";
fDesc[2] = ", Samsung, Siemens, Ericsson, LG, Philips, Panasonic, Sagem, and many more. Free trial version available. No cables required!";
fDesc[4] = "presentations, tutorials and testing!";
fDesc[5] = "create from your mp3, wma, aac, wav, ogg files or from your CD collection.";
fDesc[6] = "picture you have taken from a digital camera or a photo a friend sent to you), customize it and have it on your mobile phone.";
fDesc[8] = ", either creating your own, customize it and have it on your mobile phone.";
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 = '...';
}
}