var fDesc=new Array();
fDesc[0] = "Neighborhood Survey Pro makes it easier than ever to gather baseline information for planning and for measuring outcomes. Forget paper survey forms and tedious data entry. Just record data on a hand-held computer, download into a master database, and you're done!
Neighborhood Survey Pro provides an opportunity to train residents to use accessible technology and builds interviewing skills, increasing their employment potential. Enterprise has developed a curriculum to train users to operate hand-held computers and to conduct electronic surveys.";
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 = '';
}
}