var fDesc=new Array();
fDesc[0] = "POPtrans combines a multi-language dictionary, translation aid and study system with pop-up hints! Surf the web in Chinese/Japanese/English and read with pop-up hints just by moving the mouse!
Main Features:
- Support for a wide range of dictionary formats [Includes: Japanese ↔ English, Chinese → English, English → Spanish]
- Auto-clipboard lookup of words and URLs [Registered Version]
- Mouse-over pop-up definitions
- Study list building features (just double-click words) [Registered Version]
- Study matching games
- Search for whole blocks of text at once
- Supports multiple languages on any system (via Unicode and .NET)
- Add your own dictionaries and update to the newest versions of Edict and CEdict [Registered Version]
- Penguin that jumps";
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 = '';
}
}