var fDesc=new Array();
fDesc[0] = "Clipboard Help Spell is an efficient and lightweight clipboard history utility.
Main features:
- Database stores history of all past text and image clipboard entries for easy viewing, modification, and search
- Use it for keeping hierarchical notes - search, sort, filter by text, modification date, last view date
- Super easy and super fast search function - or use complex filters if you need them - you'll never have a problem finding a note again!
- Organize your notes and clips any way you want - show them all or view by group or category; view your clips any way you like
- High-quality spellcheck - underlined mistakes; learning spellchecker
- Configurable hotkeys for common functions
- Powerful text formatting options - make your own presets for common functions
- Simple functions for copying and pasting into and out of other applications.";
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 = '';
}
}