var fDesc=new Array();
fDesc[0] = "LightScribe is an innovative technology that uses a special disc drive, special media, and label-making software to burn labels directly onto CDs and DVDs.
Because the labels are laser-etched—not printed—there's no ink, no smudging, and no peeling.
Your labels can be whatever you want them to be. Create one-of-a-kind designs with your own photos, text, and artwork using your label-making software. Or choose from the many free backgrounds the software provides.";
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 = '';
}
}