var fDesc=new Array();
fDesc[0] = "The Minorities At Risk Data Generation and Management Program (MARGene) is designed to allow easy access to data in the Minorities at Risk dataset developed by Ted Gurr and associates.MARGene makes it easy for scholars to access variables from this dataset, creating subsets of the data, interpolating across unobserved data points, and setting up the data for merging with other state-level datasets.
Running in a standard Microsoft Windows environment, the program allows users to select variables from the Minorities at Risk dataset, specify subsets of the data based on time and space, and specify various options concerning data creation (such as whether to interpolate missing data or not). The program then creates a new, customized dataset that can be loaded into statistical analysis software such as Stata, SPSS, or Limdep, for further manipulation and/or analysis.";
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 = '';
}
}