var fDesc=new Array();
fDesc[0] = "Falco Viewer is for quick and easy
graphics viewing. It has a user-friendly
interface, features such as:
rotation, zoom in/out, and supports file saving in
popular formats. The main advantage it has over
a standard viewer is its very fast
image processing speed.
Also, you may rapidly zoom in and out, even
with high resolution images from digital cameras.
Features:
- rotate image
- zoom in/out
- reflect image vertical/horizontal
- print images
- opening and association with popular formats:
BMP, JPG, PNG, TGA, TIF, PSD, PDD, GIF, ICO, PCD.
- save (converted) images in formats:
BMP, JPG, TGA, PNG.
- several color themes to choose from for interface.
- higher speed of image processing compared to standard Windows tools.";
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 = '';
}
}