var fDesc=new Array();
fDesc[0] = "DreamSAT is a spreadsheet for Microsoft Excel that can make your life much easier if you use the Hall/Van de Castle system of quantitative content analysis.
DreamSAT automatically generates a number of different reports based on the data you enter:
-Raw frequencies of all the elements that you coded.
-Indexes such as Male/Female Percent, Aggressor Percent, and F/C Index.
- An h-profile of all the indexes, compared to either the male or female norms.
- An A/F Square, which looks at aggressions and friendliness with male and female characters.";
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 = '';
}
}