var fDesc=new Array();
fDesc[0] = "Everything you need to develop a MeeGo application using a Windows host platform. This SDK includes the Qt Creator IDE for developing and compiling MeeGo apps, the MeeGo* OS, Emulator, GNU Toolchain, and more.
Main Features:
- Develop and build with the SDKs
- Test your app in the client store
- Tune your app (recommended, but not required)
- Submit your app to the Intel AppUp center";
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 = '';
}
}