var fDesc=new Array(); fDesc[0] = "Spice-SOM is a Self-Organizing Map application. The purpose of this program is to get you started quickly with Neural Networks without having to go through lengthy theory of the Neural Network background. Once you understand these programs you will be able to consult the Neural Network materials on a need basis. Spice-SOM has interfaces in Vietnamese, English and Japanese."; 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 = ''; } }