var fDesc=new Array(); fDesc[0] = "The goal of this Java program is to produce simple black and white Identikit composing an whole face by changing his basic elements in shape,position and dimension. The basic modfiable features are ,of course,the noze (N),the eyes (E),the eyebrows (B), the mouth (M), the global shape of the visage (S) and the hair (H). There is also an additional parameter csi the regulate the ratio between upper and lower part of the face."; 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 = ''; } }