var fDesc=new Array();
fDesc[0] = "wexclipper is an application for sharing the contents of your clipboard in an easy and quick way.
By pressing a key combination on your keyboard (default: Ctrl-U / Ctrl-D) or by right-clicking the wexclipper icon the current contents of your clipboard are uploaded to or downloaded from wexclipper website. Before it works you have to specify a web clipboard name once. Anyone specifying the same name can use the same web clipboard. Also image or text data can be converted to pastable files";
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 = '';
}
}