var fDesc=new Array();
fDesc[0] = "The b-PAC SDK Software Development Kit is a software tool for Microsoft Windows that allows customized labels to be printed from within your own applications.
Although knowledge of popular programming languages (such as Microsoft Visual Basic® or Visual C ®) is essential in order to use this software, only a few simple lines of code are necessary to control b-PAC SDK and print your labels.";
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 = '';
}
}