var fDesc=new Array();
fDesc[0] = "PictureRelate compares pictures by similarity. Of course computers can't understand what's in a picture. Pattern recognition and image analysis has tried for many decades and has failed, so far. But there are some basic image properties that can be analyzed by a computer. PictureRelate uses a set of such features to classify images. These features were designed to mimic the human eye, i.e. they use what neurologists like to call "pop-out" features.
The human brain uses pop-out features to find interesting visual elements fast. So a major benefit of using this technique is: it is fast! Using a large number of such features and combining them in a weighted way often gives surprisingly good results. Therefore I decided to publish my experimental program as a technology demonstrator. Try it!";
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 = '';
}
}