var fDesc=new Array();
fDesc[0] = "Smart Quote Organizer (SQO) is the ideal database for collecting, organizing and viewing aphorisms and quotations.
The information for each quote includes: text, author, subject, language, rating, notes and unique reference key. Quotes can be filtered using a combination of criteria (string in quote, string in note, author, subject, language, rating). Quotes are normally shown in a continuously changing random order, unless you select the order you prefer.
The information for each author includes: name, notes, picture, quotes quantity. You can link each author to a different picture of your choice, which will appear when a quote of that author is displayed.";
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 = '';
}
}