var fDesc=new Array();
fDesc[0] = "pyFlashCards is a wxPython based software for creating and studying flash cards. Thanks to python and wxPython it is multiplatform; it runs on Windows and Linux and Mac OS X (PowerPC only).
Main features:
- This software runs on Windows, Mac OS X, and Linux. This means that you can share your flash cards with all your friends.
- Flash cards support html tags which allows to highlight important concepts
- Flash cards can contain images.
- Flash cards support unicode characters which allows studying any language and use of special 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 = '';
}
}