var fDesc=new Array();
fDesc[0] = "SMSarch - SMS Phone to PC archiver
Archive SMS messages from your mobile phone to the neat text files named by the message sender.
- Downloads all messages in binary archive and then generates text files
- Address book downloaded from the phone
- Reads address book in Unicode
- User defined address book
- Exclusion of specified numbers from archiving
- The sender can be determined by the message content
- Exclusion of specified number from the archive
- Concatenates multi-part messages
- Connects to the phone via COM port or infra-red beam
- Only standard GSM AT codes are used";
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 = '';
}
}