var fDesc=new Array();
fDesc[0] = "Replicates the Snipping Tool of Windows 7.Based on XP Snipping Tool by Jay Stratemeyer.This was created for learning purposes.
Capture Image - Click on capture. This prints your screen and takes you to the edit view.
Snip - Just select the area of the picture you want and click on crop
Save - Click on File->Save as and choose a filename";
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 = '';
}
}