var fDesc=new Array();
fDesc[0] = "Kindle Mate is a neat tool with rich features designed to sync, organize, import & export Kindle clippings (Kindle highlights and notes) and Kindle Vocabulary Builder words on the computer. Support all models of Kindles including Kindle 3/4/Touch, Kindle Paperwhite, Kindle Voyage, Kindle Oasis, with multiple languages, time zones and locales support, automatically.
Auto-sync, import Kindle highlights, notes, and vocabulary words, organized by author, title, words learning status, lookup frequency. Kindle Mate saves Kindle clippings and words data safely in local DB.";
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 = '';
}
}