var fDesc=new Array();
fDesc[0] = "Clipboard Format Spy lists the available formats for any data that is currently stored on the clipboard. It automatically updates the information displayed as the contents of the clipboard change. For certain formats you can also view the clipboard contents. The clipboard can also be cleared.
Clipboard formats can be viewed by selecting the required format in the main display and right-clicking to display a pop-up menu. Select the required viewer from the menu.";
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 = '';
}
}