var fDesc=new Array();
fDesc[0] = "EZ-Forms-TXRE (Texas Real Estate) is the Filler, Printer, Viewer for the TREC approved Real Estate Related forms. For Real Estate and Inspection professionals.
Features:
-The included Filler/Typer allows you to load up a form then fill it out by simply selecting the text tool, clicking to the location intended and typing.
- You will be able to modify text attributes like font, size and color with the selection (arrow) tool.
- You will even be able to add lines and boxes, if you wish.
- PDF compatible output available.";
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 = '';
}
}