var fDesc=new Array(); fDesc[0] = "Within VibSpec the program IRIS (Infrared and Raman Interpretation Support) is developed. IRIS is intended to assist and alleviate the complex process of interpreting Infrared and Raman spectra and is not a search program. The general aim of the program is to provide rapid and simple access to correlation tables, wavenumber regions of functional groups, typical spectra, with reference to characteristic features, terms, commonly used in IR and Raman spectroscopy"; 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 = ''; } }