var fDesc=new Array();
fDesc[0] = "URL2JPEG captures a web page. You can save the full or partial page to file or clipboard. Execute script for automatic thumbnail creation.
Main features:
-Auto fit and remove scrollbars. You don't want to capture the scrollbars because url2jpeg adjusts everything automatically.
-Take a snapshot of the page, this mean animated page are correctly rendered
-Save to jpeg, png, and BMP
-Copy to clipboard
-Multi-language user interface.
-Capture a part of the page if you want. You can manually select the area you want to capture, you can also navigate in the web page HTML tag for automatic accurate selection. Add a border.
-Resize generated bitmap, to create thumbnail for example. Create smaller or bigger image. Create fixed size or relative size bitmap.
-Easy scripting creation for batch capture.
-Javascript error handling is disabled. Don't be blocked by javascript errors.
-No popup. Every popup is catch and display in the popup list bar. To follow it simply click.
-Auto preview. In manual capture immediately view the saved bitmap in the default viewer.
-Auto update. You are warned when a new version is available.";
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 = '';
}
}