var fDesc=new Array();
fDesc[0] = "Smartphone Homescreen builder is a free WYSIWYG PC application for creating homescreens for windows smartphones (Windows Mobile 5.0 and 6.0), completely removing the need to understand the xml.
It supports the standard plugins :
- IconBar plugin
- MRU plugin
- Time & Date plugin
- Carrier plugin
- Profile plugin
- SMS count plugin
- MMS count plugin
- Email count plugin
- Calendar plugin
- All day appointment plugin";
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 = '';
}
}