var fDesc=new Array();
fDesc[0] = "Home Selling Calculator gives you the ability to see the effect of time on market on your net profit from selling your home. Home Selling Calculator is Windows®-based and runs on Windows 2000, Windows XP, Vista and Windows 7.
Home Selling Calculator includes a Home Inspection Form to help you understand what buyers are looking at when they look at homes and a Mover's To Do List which helps you prepare for a move into another home.";
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 = '';
}
}