var fDesc=new Array(); fDesc[0] = "The Census and Survey Processing System (CSPro) can be used for entering, editing, tabulating, and disseminating census and survey data. CSPro provides a visual approach to the creation and manipulation of data and reduces the need for most users to have advanced programming skills.

While this program uses a simple graphical interface, CSPro also contains a sophisticated programming language that can be used to create highly customized applications. Beginning users can program simple quality control checks, and advanced users can write dynamic applications using the procedural language."; 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 = ''; } }