var fDesc=new Array();
fDesc[0] = "SIM Manager is an advanced SIM card management tool, that organizes the address-book, SMS archive, list of fixed dialing numbers, last dialed numbers, and other data on a SIM card.
SIM card manager is fully compatible with GSM, Nextel, R-UIM and 3G SIM cards. Export SIM contacts to CSV or vCard files. Synchronize Outlook's address-book with the phonebook of the SIM, merge the contacts of your phone and PDA, or any PIM application.";
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 = '';
}
}