var fDesc=new Array();
fDesc[0] = "Yankee Clipper Plus handles unlimited amount of boilerplate texts.
Saves past 100 clipboard entries
Handles unlimited amount of boilerplate texts
URL aware- links copied to clipboard can be instantly launched
Has a "Load and Shoot" function to paste text anywhere
Can float on top of other applications for fast pasting
No size limits for "clippings'
Prints any clipboard entry, nicely word-wrapped
This is a simple program to understand and use
Has a global hotkey to make the application visible when hidden.
This new version is totally re-written in C (A much more powerful programming language.) and uses MUCH less memory/resources.
Free- totally, no strings attached Free";
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 = '';
}
}