var fDesc=new Array();
fDesc[0] = "EzPerf is a great new tool for the stamp collector. With EzPerf you will Easily & accurately measure the perforations of your stamps. Just scan your stamp & EzPerf will instantly measure & display the perforation measurements of your stamp.
EzPerf has a built in measure tool to measure overprints, cancellations,and even help you determine the difference between rotary and flat press printings. EzPerf also includes a Postmark Gauge to measure the size of a cancellation and Position finder tool to easily show others where to look for a particular feature on a stamp!";
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 = '';
}
}