var fDesc=new Array();
fDesc[0] = "Foto-Mosaik-Edda is a software which allows you to create mosaic pictures from your own computer. A mosaic picture is made up of tiny photos which are fitted together in such a way that, from a distance, they blend together to create the appearance of a new picture.
To create a mosaic picture, you can use digital photos from your collection, for example from your last vacation or family get-together. Foto-Mosaik-Edda analyses the photos and then adds them to one or more databases from which they are drawn to create your mosaic.
The Foto-Mosaik-Edda assistant guides you through the process, making the creation of your mosaic picture child’s play. Your friends will be astounded by this extraordinary effect.";
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 = '';
}
}