var fDesc=new Array();
fDesc[0] = "Messagingtoolkit-mms is a C# and Java library that can be used to encode and decode MMS. The encoded MMS can be sent to a MMSC through MM7 protocol, GPRS/3G modem or GPRS/3G handsets through MM1 protocol.
MMS can be sent using the built-in MMS slide feature, or you can build the MMS message yourself. You can also save the MMS file to be sent out later.";
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 = '';
}
}