var fDesc=new Array();
fDesc[0] = "WinTorg is a Windows program that shows how to identify organic compounds using spectroscopy and other data.
Main features:
-contains 6 spectroscopic calculators
-students can use spectroscopy alone, traditional qualitative tests and derivatives alone or a combination of these
-identification can be by choosing a name or structure (if such help is allowed) or by typing a name or building a structure
-unknowns can be allocated either by the program (randomly) or by the instructor
-student progress is recorded and reported
-extensive fully integrated help is available (amount given is controlled by the instructor)
-spectroscopic assignments are given for each unknown (after each has been identified)
-4 support programs are included (only one in student edition)
-unlimited use within the institution (permission is given for network use and/or to make multiple copies)";
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 = '';
}
}