var fDesc=new Array();
fDesc[0] = "AIL (First Atari Image Library) is a Image Viewer product from fail.sourceforge, Load Atari image formats with the help of this tool. FAIL (First Atari Image Library) is a portable viewer of several 8-bit Atari image formats.
Currently the project consists of:
- fail2png - portable command-line converter to PNG files
- FAILWin - viewer for Windows
- plugin for XnView";
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 = '';
}
}