var fDesc=new Array();
fDesc[0] = "The Free, Fast, and Easy Way to Read and Annotate PDF Documents!
Do you need a free, easy and powerful PDF reader?
Yes! Perfect PDF Reader is the perfect solution!
Perfect PDF Reader is a powerful alternative to Adobe® Reader and is packed with additional features.
You can:
- Fill out PDF forms and save them as PDF files or send them via email
- Annotate PDF documents and save them as PDF files or send them via email
- Sign PDF documents and save them as PDF files or send them via email
- Export pages from PDFs as images (JPEG, TIFF, GIF, PNG, BMP)";
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 = '';
}
}