var fDesc=new Array();
fDesc[0] = "Resizrr is a simple and fast image resizer. Just drag-and-drop images into the application and it outputs the resized images. Useful for scaling down images for email or facebook upload.
Resizrr is built using Adobe® Air® and NativeProcess. The resizing of the images is not handled by ActionScript, but by an Lua/C native command-line application. Therefore it is possible to resize the images faster and with greater quality.";
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 = '';
}
}