var fDesc=new Array();
fDesc[0] = "Predictive methods of fortune-telling include physiognomy (study of facial characteristics) and phrenology (study of contours on the skull). Physiognomy, which claims to find correspondences between bodily features and psychological characteristics, often makes use of such supposed similarities.
Digital Physiognomy uses a sophisticated neural network to identify correlations between facial features and psychological characteristics using photo identification techniques recognized by law enforcement professionals.
Only facial features that can be interpreted by physiognomy were used. You select eyes, eyebrows, foreheads, cheekbones, chins, noses, mouths and ears to assemble a face.
The program determines a person's psychological characteristics and presents a detailed character analysis of that person in a graphic format. You may then print a report or save it as a web page.
The program does not forecast the future, but discovers how others really see you. It also allows you recognize and read personality traits of others, to identify your strongest character traits and to identify the character flaws of your opponent.
If you are interested in people's faces, you will enjoy Digital Physiognomy, the software for curious people! This is both entertaining and enlightening. You gain accurate insight into the true nature of famous people. The library includes samples of human face reading:";
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 = '';
}
}