var fDesc=new Array();
fDesc[0] = "Create a full label with the same ease as the Simple Labeler. The Template Labeler expands the capability of the Simple Labeler while retaining its fast and easy user interface. After inserting a LightScribe disc label-side down into your drive, just follow the three easy steps - pick a template design; add your own text or optional pictures; then preview and print - and you're done!
To do so download and install any pack you like. On Windows, the background JPG images are located in the folder My Documents/LightScribeTemplates/backgrounds.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}