var fDesc=new Array();
fDesc[0] = "Easy Frame Creator is intended for quick and easy creation of framed images or single frames, unique collages and abstract pictures for theirs publication on the web.
Main features:
- loads source image from BMP, JPEG (JPG), GIF, PCX, PSD, PNG, TIFF and TGA - files;
- rotates, flips, changes the size of the image, crops rectangular image patch;
- applies effects and corrects the image and texture;
- creates frame image effects on basis of prepared templates";
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 = '';
}
}