var fDesc=new Array(); fDesc[0] = "From bada 2.0 onwards, the OS supports multitasking. When multiple bada applications are running simultaneously, only one bada application can run in the foreground. The rest must run in the background. The user can switch application perspectives and determine which application is running in the foreground at any given moment."; 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 = ''; } }