var fDesc=new Array();
fDesc[0] = "Screen Beagle Pro is a set of utilities for capturing and analyzing screenshots from your desktop. It can capture either the whole screen, or a selected part of it to the clipboard, or to a GIF / PNG / JPG / BMP / TIF file. You can use its Magnifier tool to analyze minute details; it can zoom from x1 to x10. Screen Beagle Pro also features a measuring scale and ink-dropper. Dropper can acquire the color of any pixel on the screen and transform it into text formats (RGB, RGB Hex, and HTML).
Screen Beagle is also available in a regular version, which lacks Measurer, Dropper, and Information window.";
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 = '';
}
}