var fDesc=new Array();
fDesc[0] = "The Sharp GX30 Handset Manager is a Suite specially designed for the Sharp mobile phones and includes multiple configuration tools for each of the phone functionalities. This includes:
- Contact List management for adding, editing and removing contacts from your phone
- Message for managing your SMS, e-mails if the phone supports it and more
- Calendar can help you synchronize your Outlook express contacts on your phone directly
- Album is a great way to setup your wallpaper on the phone
- Melody contains a set of tracks that you can setup as the default ringtone
- The file manager handles all the other file types supported on the phone.";
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 = '';
}
}