var fDesc=new Array();
fDesc[0] = "SN Write Tool is a small tool that allows you to write or flash IMEI on MediaTek devices.
Main Features:
- It allows users to flash single or multiple IMEI (upto 4) on the MediaTek device.
- It allows users to flash various options apart of flashing the IMEI only. It supports Barcode, BT Address, Wifi Address, Wifi EPPCopy, Mac Address, DRMkey MCID.
- It allows users to flash or remove IMEI lock option in the Mediatek Devices.
- It supports Multiple MediaTek Devices like Feature Phone, Smartphone, SP DualModem, Tablet (Wifi only), Rndis Dongle.";
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 = '';
}
}