var fDesc=new Array();
fDesc[0] = "Amazon Reviewer Analysis Tool a free utility for persons interested in statistics related to Amazon reviewer profiles.
ARAT is an application that gathers information associated with an amazon.com account.
Main Features:
- Analysis of review history with data stored for future comparisons.
- Charts associated with statistics gathered in analysis.
- List of unrated purchases.
- Analysis of review history and newsletters for Amazon Vine members.";
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 = '';
}
}