var fDesc=new Array();
fDesc[0] = "DYMO Label Software includes many features that make it flexible and easy to use. The software now contains two editors: Label Editor and Tape Editor. The Label Editor is much the same as previous versions of the software, allowing you to design and print DYMO die-cut labels.
With this release, DYMO Label Software includes a Tape Editor, allowing you to print labels on D1 tape printers. The Tape Editor is only available if you have a DYMO tape printer installed on your computer, such as the DYMO LabelWriter Duo or LabelManager 450.
In addition, DYMO has integrated the Label Software into Microsoft® Word and Excel allowing
you to print labels quickly and easily from within Word and Excel. For Windows, the software has also been integrated with Microsoft® Outlook®, Palm™ Desktop, and WordPerfect®.";
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 = '';
}
}