var fDesc=new Array();
fDesc[1] = "and Norway such as Mantorp Park, Knutstorp Ring, VĂ¥ler Track, Eco Drive Arena and some more. In the cars section you will find famous brands like Audi, Volvo and BMW, their models being A4, C30 and 320si, respectively.";
fDesc[4] = "Web sites with text; prints huge posters. FotoAlbums can be encrypted and sent our private FTP, including attachments of any file type. It has unlimited keywords and several sorts. It resizes photos fast; has text that supports Unicode and can be in languages including Chinese, Japanese, Arabic, Hebrew, Russian, Scandinavian, and Korean. You can export and import to Microsoft Access";
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 = '...';
}
}