var fDesc=new Array();
fDesc[0] = "Generate your own EAN/ISBN barcodes. Supports both ISBN and ISBN-13 numbers and allows your barcodes to be exported to PDF, GIF, JPG, BMP, PNG, TIF and WMF files for inclusion in your layouts.
Features:
- Generate EAN barcodes for both ISBN and ISBN-13 numbers
- Built-in ISBN validation to ensure the numbers input are valid
- Generates barcodes which also include the ISBN information and the optional price UPC-5 supplement
- Exports barcodes to PDF, GIF, JPG, BMP, PNG, TIF and WMF files for easy inclusion in your layouts and projects";
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 = '';
}
}