var fDesc=new Array();
fDesc[1] = "allows the user to customize the LightScribe settings and even keep track of the system’s information. The user can double click on the LightScribe icon placed in the system tray on the right lower corner of the Windows desktop screen.";
fDesc[2] = "and 8 cm discs. In only 4 simple steps you will be able to design and print the complete artwork you need for both the disc and its jewel case. You can either print a CD/DVD label to stick on the disc or print directly onto its surface, using Labelflash and LightScribe technology.";
fDesc[3] = "you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[4] = "touch by printing on them. You are limited to gray scale images, but still, the amount of designs that you can achieve is vast. For Lightscribe to work you need to have a burner that supports the technology and a special disc to print on.";
fDesc[5] = "with great ease. However, LightScribe System Software (LSS) version 1.10.16.1 or newer must also be installed, but the LSS and Template Labeler versions are not required to match necessarily.";
fDesc[6] = "and scan your directories and files in search for problems that could render your Lightscribe software non-functional. The application doesn't actually do anything to solve problems, but it directs you in the right direction.";
fDesc[7] = "system and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[8] = "and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[9] = "designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[10] = "allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[11] = "system and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[12] = "and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[13] = "system and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[14] = "allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[15] = "allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
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 = '...';
}
}