var fDesc=new Array();
fDesc[0] = "Send free text messages from your PC with this simple tool.
All you need is a number and something to say.
Main features:
- Address Book - Store all your friends names and numbers for quick texting.
- Data Import - Import names and numbers from your favorite programs.
- Recent Numbers List - drop down the list to display recently used names and numbers
- Multiple Recipients Support - Enter multiple numbers seperated by commas or select a bunch of names from the address book
- Anonymous Capabilities - Send messages without including your real name
- Auto Message Splitting - GoText will automatically send your message in multiple parts if it is too big for a single text message!
Portability - Copy GoText to any folder on any drive and it still works. Take it to the computer lab on a keychain USB drive.";
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 = '';
}
}