var fDesc=new Array();
fDesc[0] = "Fora Reader is a desktop reading application with an integrated basic browser dedicated to reading documents in a foreign language. Main features are rapid word translations within the browser and complete dictionary management.
Features
- Multiple activation methods
- Hover
- Selection
- Clipboard
- Browser extension
- Split views (browser/dictionary)
- Cross-lookup between dictionaries
- Navigation between results
- Unified dictionary management for all types of dictionaries
- Add
- Remove/delete
- Enable/disable
- Reorder
- Assign color
- Show information
- Recommend
- Multiple dictionary arrangements using profiles (grouping)
- Multiple dictionary formats support
- StarDict
- XDXF
- DSL
- DICTD
- Plain/TSV
- Wildcard search
- Fuzzy search
- Full-text search
- DICT protocol
- Tabbed interface
- Multi-panel views
- Browser extension (for Google Chrome)";
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 = '';
}
}