var fDesc=new Array();
fDesc[0] = "* The current version is 1.4, which is released in January 2010. The setup program is about 3.2 M Bytes. It has been tested on Windows 98, ME, XP.
* To download the program, please click download.
* Please report any bugs or mis-romanization to awirote@chula.ac.th
* This program is free for personal use. To obtain a license for other uses, please contact CU's Intellectual Property Institute.
(Basic commercial license rate is 100,000 baths)";
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 = '';
}
}