var fDesc=new Array();
fDesc[0] = "On-Screen Takeoff® is an easy to learn construction estimating and takeoff program that cuts your normal takeoff time in half. Imagine being able to bid 2 to 3 times more work than you do now. What could that do for your bottom line?
On-Screen Takeoff saves you precious time through the use of electronic plans. You can now quickly measure areas and lengths on-screen by just pointing and clicking the mouse. If you can navigate our website, then you can easily learn to use this program, especially since we offer training and support.";
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 = '';
}
}