var fDesc=new Array();
fDesc[0] = "Declan's French FlashCards is a fully configurable audio-based French vocabulary flash-card program.
The program has been designed to help students learn a large number of French words as quickly as possible in a systematic but fun and simple way.
The program incorporates an audio feature that uses a native speaker's voice recordings of a word's pronunciation to aid the learning process. Word Files comprising over 3600 of the most frequently used French words, each with a native speaker's voice recording of its pronunciation, are available for free download.";
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 = '';
}
}