var fDesc=new Array();
fDesc[0] = "EZDesktop is your solution to a fast and easy way of capturing the images on your computer screen. Avoid the hassle of "printscreen" everytime, this feature allows you to save the screen image in a click of a button.
Main features:
- Picture format in .JPG, .BMP method or both.
- Easy hot-key (CTRL-D) for snapping
- ON/OFF Timer to capture at intervals
- Stores images in different folder for easy browsing
- Sequential screen image capturing
- Appear in taskbar for easy monitoring";
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 = '';
}
}