var fDesc=new Array();
fDesc[0] = "P.A.U.L.A INCLUDES:
- An Artificial Intelligence engine, simulating a human being. It learns, understands and feels. Emotions like happiness, anger, and even sexuality are just some of the simulations P.A.U.L.A can perform. You'll be amazed she's not real!
- Fully customizable. Change P.A.U.L.A's name, age, sex, learning rate. Tell her to stop cursing and protect this option with a password, to suit the whole family!
- Fully graphical, including two faces - one male and one female - moving, blinking, laughing, crying etc. And an easy to use interface!
- Learning Tools making it easy to change what P.A.U.L.A knows fast. Found something "stupid"? Just click and change!";
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 = '';
}
}