var fDesc=new Array();
fDesc[0] = "This GB18030 support package contains:
SimSun18030.ttc: A font file for GB18030
C_g18030.dll: A system library that extends the MultiByteToWideChar and WideCharToMultiByte program interfaces to support GB18030. It is only installed on Windows 2000 systems.
GBunicnv.exe: An end-user application that converts GB18030 plain text and HTML files to Unicode and vice versa.
Ms4bsp.dll: A system library that provides program interfaces for the GB18030 character type.
After the support package is successfully installed, the gbunicnv.exe and ms4bsp.dll will be installed under SystemDrive\Program Files\GB18030Tools\folder.";
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 = '';
}
}