var fDesc=new Array();
fDesc[0] = "Within minutes, you can import, edit, crop, enhance, encode, upload, and set ringtones directly for your Windows Mobile phone. With the help of this simple yet powerful all-in-one product, all you have to do is a couple mouse moves and clicks.
Your collection of Audio CDs, MP3s and WMAs becomes a huge repository of fresh ringtones. OK, let's get started and have some fun.";
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 = '';
}
}