var fDesc=new Array();
fDesc[1] = "Point slides directly in the phone, browse/play the songs in ITune, WIinAMP and Media player and much more...";
fDesc[2] = "virtually an efficient remote control that allows you to add or change the controlled programs without any sluginesh.";
fDesc[3] = "worldwide. It has an exclusive and easy-to-manage interface adapted to SMS standards and offers you more extended features for SMS delivery";
fDesc[4] = "used in Windows and electronic devices (Mobil, phone, DVD player and any other LCDs).";
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 = '...';
}
}