var fDesc=new Array();
fDesc[0] = "The fastest and easiest way to prepare real estate forms.
Main features:
- Installs On Your Computer - Internet connection not required while using program
- Fully Compatible with Microsoft® Windows 7, in addition to Windows XP, 2000, and Vista.
- Install via download or optional CD-ROM
- This is a stand-alone product. Specifically designed to prepare official form contracts as quickly and easily as possible. You can simply fill in blanks and print.";
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 = '';
}
}