var fDesc=new Array();
fDesc[0] = "Wind Image Stand Alone is the ultimate application for processing images outside of any other program.
Users can process images using the Wind Image Stand Alone application accessing a robust set of photo editing tools (i.e. crop, rotate, touch up, red eye reduction, focal blur, etc.) as well as explore the advanced tools for: reporting, documenting, creating kmz, and kml files for use in Google earth, as well as creating Google web maps which ultimately allows users to view images and information in a mapping environment over the world wide web.";
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 = '';
}
}