var fDesc=new Array();
fDesc[0] = "HTML2PDF Add-on is a library that helps you to convert HTML to PDF using PDF Creator Pilot. The add-on library can produce PDF documents using specific HTML code, text file or text buffer. It supports URL conversion, including image linking. The library includes detailed documentation together with the step-by-step tutorials for the most popular programming languages. HTML2PDF add-on works only with PDF Creator Pilot.";
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 = '';
}
}