var fDesc=new Array(); fDesc[0] = "The Windows CE SDK is a development environment for creating applications for devices based on Microsoft Windows CE (Embedded Compact) 5.0. This Standard SDK contains a subset of common Operating System (OS) APIs that allows an application written on the Standard SDK to run on different Windows CE platforms having a graphical user interface. An application that is based on the Standard SDK for Windows CE will run on any device that contains the Standard SDK components. You must install Microsoft eMbedded Visual C 4.0 SP4 before using this IDE."; 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 = ''; } }