var fDesc=new Array();
fDesc[0] = "How to install Colibri SDK for WINCE:
1. Download the Colibri SDK from Toradex (link) and save it to the desktop.
2. Install Visual Studio (tested to work with 2005 & 2008) on Windows (tested to work with both 32 and 64 bit versions).
3. Run cmd.exe an an administrator. E.g. create a shortcut to cmd.exe on your desktop (or wherever you saved the Colibri SDK). Right click on the shortcut and run it as Administrator.
4. Browse to your desktop (usually "cd c:\users\*name*\desktop").
5. Type the following "msiexec /qb /i colibri_SDK_1_0.msi"
6. Ensure the SDK has been installed by opening Visual Studio and clicking (tools -> options -> device tools -> devices). You should see Colibri listed in the "Show Devices for Platform" box.";
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 = '';
}
}