var fDesc=new Array();
fDesc[0] = "IQ DOCTOR is a box-tool for maintaining mobiles, which you can trust and depend on to search Pin-Out of your mobile phone (USB Port & COM Port). It has some great functions, such as:
- Reading out Flash Information: Automatically Create a Flash File (The Suffix is “.bin”), when the Flash Information is read out from the mobile.
- Writing in Flash Information: Write the Flash Information into the mobile by reading from the Flash File.";
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 = '';
}
}